body {
    justify-content: center;
    justify-items: center;
    margin: 0px;
    padding: 0px;
    background-image: url(../assets/img/natureza\ 8.webp);
    background-repeat: no-repeat;
    background-image: cover;
    background-size: cover;
}

header{
    justify-content: center;
    padding: 0px;
    backdrop-filter: blur(20px);
    flex-direction: row;
}

.resto{
    justify-items: center;
    margin-top: 50px;
}

.fases{
    display: flex;
    justify-content: space-around;
}

.fases a{
    width: 100%;
    padding: 40px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: black;
}

.fases a:hover{
    transition: 0.5s;
    background-color: rgb(0, 160, 0);
}

#gameArea {
    justify-items: center;
    border-radius: 10px;
    margin: 50px;
    max-width: auto;
    margin: auto;
    text-align: center;
    color: rgb(0, 0, 0);
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}


#game {
    width: 500px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    text-align: center;
}

#hud {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.pet {
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.next {
    padding: 10px;
    margin: 30px;
    padding: 30px;
    border: none;
    border-radius: 12px;
    background: #00c853;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.next:hover {
    background: #00e676;
    transform: scale(1.05);
}

button {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border: 0px;
    border-radius: 5px;
    background-color: #ffffff;
    display: block;
    margin: 10px;
    padding: 10px;
    font-size: 16px;
}

button:hover {
    background-color: #00e676;
    transform: scale(1.05);
    transition: 0.3s;
}

#introScreen {
    border-radius: 10px;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial;
    text-align: center;
    animation: fadeIn 2s;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }

}

.decisions{
display:flex;
gap:20px;
justify-content:center;
margin-top:30px;
}

.card{
width:260px;
padding:20px;
font-size:18px;
border:none;
border-radius:15px;
cursor:pointer;
transition:all 0.3s;
box-shadow:0px 8px 20px rgba(0,0,0,0.2);
font-weight:bold;
}
