/* fontes */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: var(--corpo);
}

:root {
    --titulo: "Press Start 2P", system-ui;
    --corpo: "Caveat", cursive;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

nav img {
    width: 200px;
    height: 200px;
    align-self: start;
}

nav div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-right: 15px;
}

.btn {
    background-color: #0057B8;
    padding: 7px 12px;
    border-radius: 15px;
}

.btn a {
    color: white;
    text-decoration: none;
}

#inicio {
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(inicio.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 450px;
    margin: 100px 7% 150px;
    padding: 30px 10px 10px;
    border-radius: 70px;
    text-align: center;
    position: relative;
}

#sInicio h1 {
    font-family: var(--titulo);
    font-size: 40px;
    margin-top: 40px;
}

#conferir {
    background-color: #0057B8;
    padding: 5px 10px;
    font-size: 25px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
    margin-top: 70px;
}

#fonte {
    background-color: #00000077;
    color: white;
    display: inline-block;
    font-size: 15px;
    font-weight: 900;
    padding: 5px 10px;
    border-radius: 20px;
    margin-top: 50px;
    position: absolute;
    bottom: 20px;
    left: calc(50% - 135px);
}

.git {
    color: rgb(194, 194, 194);
    text-decoration: none;
}

.git:hover {
    color: #0057B8;
}

#descricao {
    padding: 0 7%;
}

#verti {
    min-width: 300px;
    width: 30%;
    border-radius: 125px;
    margin-right: 20px;
    float: left;
}

#descText {
    font-size: 20px;
    margin-bottom: 10px;
    max-width: 1000px;
}

#descText h2 {
    font-family: var(--titulo);
    font-size: 30px;
    margin-bottom: 50px;
    text-align: center;
}

#descText p {
    margin-bottom: 35px;
}

#gale {
    background-color: #333333;
    padding: 30px 30px;
    margin: 0 7%;
    margin-top: 70px;
    border-radius: 40px;
}

#gale h2 {
    font-family: var(--titulo);
    font-size: 30px;
    margin-bottom: 50px;
    text-align: center;
}

#imgs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.card {
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gameText {
    text-align: center;
    padding: 0 10px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.imgEx {
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.gameName {
    font-family: var(--titulo);
    display: inline-block;
    margin: 20px 0 15px;
}

.gen {
    font-family: var(--titulo);
    text-decoration: underline;
    font-style: italic;
    font-size: 12px;
    display: block;
    margin-bottom: 30px;
}

.gameDesc {
    font-size: 18px;
    line-height: 1.5;
}

#form {
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url(form.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 475px;
    margin: 100px 7% 50px;
    padding: 30px 10px 10px;
    border-radius: 70px;
    text-align: center;
    position: relative;
}

#form h2 {
    font-family: var(--titulo);
    font-size: 30px;
    margin-bottom: 40px;
}

#form label {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#form input, #form textarea {
    width: 80%;
    max-width: 600px;
    padding: 5px;
    margin-bottom: 20px;
    border-radius: 15px;
    border: 2px solid #ccc;
    font-size: 18px;
    font-family: var(--corpo);
    resize: vertical;
}

#form button {
    background-color: #0057B8;
    padding: 5px 10px;
    font-size: 25px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    display: inline-block;
    margin-top: 40px;
}

footer {
    text-align: center;
}

footer h4 {
    font-family: var(--titulo);
}

.icon {
    width: 25px;
    height: 25px;
    margin: 10px 10px;
}

footer p {
    font-size: 18px;
    margin: 0 10px;
}