*{
    margin: 0;
    padding: 0;
    
}

html{
    background-color:#8a97a0;
    color: white;
    height: 100%;
}

nav{
    display:flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-bottom: 150px;
}

h1{
    padding: 10px 25px;
    font-size: 2rem;
    text-shadow: 1.5px 1px #0D0D0D;
}

li{
    list-style: none;
}

#icone-settings{
    padding: 10px 25px;
    width: 25px;
    
    
}

/*container principal*/
#container{
    background-color: #8a97a0;
    width: 700px;
    height: 450px;
    border-radius: 18px;
    margin: auto;
    box-shadow: 1px 1px 1px 1px black;
    
}

/*container pai botoes tipos de intervalos*/
.botoes{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    
}

/*filho de botoes*/
.tipo-intervalo{
    
    background-color: #9FB3BF;
    padding: 10px;
    margin: 30px 10px 60px 10px;
    border: 2px solid rgba(0, 0, 0, 0.0);
    border-radius: 10px;
    color: black;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 1;
    flex-grow: 1;
    box-shadow: 1px 1px 1px #0D0D0D;
    cursor: pointer;

}

/*container pai tempo h2*/
.cronometro{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;

}

/*filho de cronometro*/
h2{
    color: black;
    font-size: 6rem;
    text-align: center;
    margin: 30px;
    
}

/*container pai botao iniciar*/
.botao-iniciar{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;

}


.botao{
    
    background-color:#0D0D0D;
    padding: 15px;
    border: 2px solid black;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 20px ;
    margin: 5px;
    cursor: pointer;
    
    
}

.botao-next{
    cursor: pointer;
    width: 50px;
    margin-inline-start: 20px;
    

}
section > p{
    text-align: center;
    font-size: 1.5rem;
    margin: 30px 10px;
    padding: 10px;
}
footer{
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 1rem;
    width: 100vw;
    height: 12vh;
    background-color: #0D0D0D;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    margin:0;
    padding: 0;
}

footer > p{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    
}
footer > p > img{
    width: 35px;
    height: auto;
    background: none;
    
}
footer > p> a{
    text-decoration: none;
    color: aliceblue;
    font-size: 1.5rem;
}

/* Configurações para mobile
@media (max-width: 700px) {
    h2 {
        font-size: 3rem; 
    }

    .tipo-intervalo {
        flex: 1 1 100%; 
        font-size: 1.2rem; 
    }

    .botao {
        font-size: 1rem; 
        padding: 0.5rem;
    }
    
    footer{
        width: 100vw;
    }
}
*/