:root {
    --lilas: #8888EA;
    --laranja: #FCA82F;
    --roxo: #6066D0;
    --cinza-escuro: #535050;
}

body {
    font-family: 'Poppins', sans-serif;
}

.container {
    margin: 2%;
}

nav {
    text-align: right;
}

nav li {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    font-size: 15px;
    background-color: rgb(170, 170, 170);
    border-radius: 50px;
    width: 110px;
    padding: 3px 0px;
    text-align: center;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
}

nav li:hover {
    background-color: var(--roxo);
    cursor: pointer;
}


header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
    padding: 40px 0px;
    font-family: 'Press Start 2P', cursive;
    font-size: 55px;
    text-shadow: 2px 4px var(--lilas);
}

header img {
    width: 200px;
    padding-bottom: 30px;
}

main {
    align-items: center;
    text-align: center;
}


.buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 15px;
}

#btn-modal,
.btn-pontuacao {
    width: 220px;
    height: 50px;
    background-color: var(--roxo);
    border: none;
    margin: 10px;
    border-radius: 10px;
    color: #fff;
}

#btn-modal:hover,
.btn-pontuacao:hover {
    background-color: var(--laranja);
    color: #fff;
    cursor: pointer;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content/Box */
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 30px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button */
  .close {
    color: var(--cinza-escuro);
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

/* Fim do modal */


.acesso {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 100px;
}

.acesso img {
    width: 180px;
}

.acesso .app-store {
    height: 54px;
    margin-top: 8px;
}

footer {
    font-size: 13px;
    padding: 80px 100px 60px 100px;
    background-color:var(--roxo) ;
    color: #fff;
}

.rodape {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.integrantes h3{
    color: var(--laranja);
    padding-bottom: 10px;
}

.integrantes p {
    line-height: 30px;
}

.integrantes p:hover {
    color: var(--laranja);
    font-weight: bold;
}

/* Animação coração*/
.fa-heart {
    animation-duration: 1.5s; 
    color: var(--laranja);
}

/* Para telas menores: celulares até 767px */
@media screen and (min-width: 0) and (max-width: 767px) {
    .modal-content {
        width: 80vw;
    }

    div#text {
        font-size: 11vw;
    }

    .acesso {
        align-items: center;
        flex-direction: column-reverse;
        gap: 0px;
        padding-bottom: 50px;
        margin-top: 40px;
    }

    footer {
        padding: 10% 10% 10% 10%;
    }

    .rodape {
        align-items: flex-start;
        flex-direction: column;
    }

    .integrantes {
        margin-top: 1rem;
    }  
}

/* Para telas maiores: computadores/tablets 768px para cima */
@media screen and (min-width: 768px) and (max-width: 1000px) {
    footer {
        padding: 10% 10% 10% 10%;
    }

    .rodape {
        justify-content: space-between;
    }

    .credito {
        width: 60%;
    }
}