*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: x-large;
}

body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
}

h1{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 7%; /*para colocar o titulo em cima da página*/
    font-size: 45px;
    text-transform: uppercase;
}

main{
    padding: 20px;
    /*box-shadow: 0 1px 10px #323232;*/
    display: flex;
    flex-direction: column;
    gap: 15px;
    /*border: #323232;*/
    /*border-radius: 14px;*/
}

footer{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 15%; 
}

footer div a{
    text-decoration: none;
    font-size: 34px;
    color: #132663;
}

a:hover{
    color: #000;
    transition: .3s;
    font-size: 45px;
}

main div{
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
}

input{
    border-radius: 7px;
    padding: 5px;
    outline: none;
    accent-color: #000; /*cor do botão do range e dos checkbox*/
    border-color: #132663;
}

input[type=checkbox] {
    color: #132663;
    width: 18px;
    height: 18px;
    border-radius: 8px;
}

input[type=range] {
    width: 90%;
}

button{
    border-radius: 7px;
    background-color: #132663;
    cursor: pointer;
    color: white;
    border: none;
    padding: 10px;
}

@media screen and (max-width: 600px) {
    h1{
        font-size: 30px;
        top: 13%;
    }
}

@media screen and (max-width: 320px){
    h1{
        font-size: 25px;
        top: 15%;
    }
}