@charset "UTF-8";

*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body{
    background-image: linear-gradient(to bottom, #2e36d3, #4e4ebd);
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: rgb(226, 223, 223);
    font-size: 20pt;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
header{
    padding: 10px;
    margin: 10px;
    text-align: center;
    text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.507);
}
h2{
    padding: 7px;
}
section{
    padding: 7px;
    margin:7px;
    line-height: 45px;
}
#voltar > p{
    font-size: 30pt;
}
#voltar > p > a{
    text-decoration: none;
    color: rgb(156, 1, 1);
    background-color: antiquewhite;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 10px;
}
#voltar > p > a:hover{
    text-decoration: underline;
    background-color: burlywood;
    transition-duration: 0.5 s;
}
p{
    font-size: 17pt;
}
button{
    font-size: 20pt;
    width: 100px;
    height: 60px;
    background-color: rgb(218, 201, 180);
    border: none;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    
}
button.vol{
    margin-bottom: 20px;
    cursor:pointer;
}
