@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap');

* {
    margin: 0;
    font-family: 'Rubik', sans-serif;
}

body {
    background-color: rgb(243, 243, 243);
}

.header {
    background-color: #1F5863;
}

/* Menu de cima  */

.top-menu {
    margin-top: 2%;
    height: 9rem;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    gap: 4rem;
    margin: 0.5rem;
}

.progress-button {
    width: 40%;
    border-radius: 40px;
    border-style: solid;
    border-color: rgb(228, 226, 226);
    border-width: 1px;
    background: #ECF6FE;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.progress-img {
    width: 8rem;
    padding: 0.5rem;
}

.library-button {
    width: 40%;
    border-radius: 40px;
    border-style: solid;
    border-color: rgb(228, 226, 226);
    border-width: 1px;
    background: #ECF6FE;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.library-img {
    width: 7rem;
    padding: 1rem;
}

.nomes {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 5rem;
    font-size: 18px;
}

/* Botão de áudio  */

button {
    cursor: pointer;
}

#btn {
    position: absolute;
    border: none;
    margin: 1%;
    margin-left: 67%;
    background: none;
}

/* Botão de volta */
.back-button {
    margin: 7%;
    width: 5rem;
}

/* Menu de baixo  */

.bottom-menu {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    flex-direction: column;
}

.first-line {
    text-align: center;
    padding: 0.5rem;
    border-radius: 2rem;
    border: none;
}

.alfabeto-img {
    width: 7rem;
}

.second-line {
    padding: 0.5rem;
    border-radius: 2rem;
    border: none;
    display: flex;
    justify-content: center;
    gap: 4rem;
}


p {
    overflow: hidden;
    text-align: right;
    float: left;
    margin: 10px;
    bottom: 0;
    cursor: default;
}

a {
    cursor: pointer;
}

/* Responsividade  */

@media (min-width: 800px) {

    .header {
        height: 10rem;
    }

    .back-button {
        margin-top: 3rem;        
    }

    #btn {
        margin-left: 85%;
    }

    .top-menu {
        margin-left: 10rem;
    }

}