
* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    list-style: none;
    font-family: "Abel", serif;
    cursor: zoom-in;
    
}

body {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    
    

}
body::-webkit-scrollbar {
    display: none; 
}

html {
    scrollbar-width: none; 
}
main {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: e5e5e5;

    
}
header {
    height: 4em;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 3px;
    background-color: #9794F2;
}
header img {
    height: 3em;
    
    
}
#bar {
    display: none;
}
header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
#voltar {
    display: none;

}
header nav ul li , header nav ul li a {
    margin: 5px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-weight: 900;
    text-decoration: none;

    
}
header nav ul li:hover, header nav ul li a:hover {
    cursor: zoom-in;
    color: #4B4973;

} 
main section {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    
    height: 100vh;
}
main section img {
    width: 20em;
    filter: drop-shadow(0.35rem 0.35rem 0.4rem #4B4973);
}

main section h1 {
    color: #9794F2;
    

}
main section p {
    width: 27em;
    text-align: center;

}
main section p strong{
    color: #4B4973;
    font-weight: bold;

}
main section p a {
    width: 7em;
    height: 3em;
    text-align:none;
    display: inline;

    
    border: none;
    text-decoration: none;
    color: #4B4973;
    background-color: transparent;
    text-transform:none;
    font-weight: 900;
    box-shadow: none; 
    

}
main section a {
    width: 7em;
    height: 3em;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 5px;
    
    text-decoration: none;
    color: rgb(255, 255, 255);
    background-color: #827EF2;
    text-transform: uppercase;
    font-weight: 900;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;    
}
main section a:hover {
    transform: scale(1.05);
    cursor: zoom-in;
}

footer {
    display: flex;
    justify-content: space-around;
    background-color:#827EF2;
    align-items: center;
    color: white;
    height: 6em;
}
footer ul {
    display: flex;
    justify-content: center;
    padding-left: 5px;
}
footer ul li {

    padding-left: 6px;


}
footer ul li a {
color: white;
text-decoration: none;


}

@media screen and (max-width: 580px) {
    #bar {
        display: inline;
        height: 2em;
    }

    main section p {
        width: 25em;
        font-size: small;
    }
    header h1 {
        font-size: medium;
    }
    header {
        justify-content: space-between;
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    header nav {
        display: none;
        background-color: #827EF2;
        position: absolute;
        bottom: 0;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1;
        
    }
    header nav ul {
        flex-direction: column;
        background-color: transparent;
        height: 100vh;
    }
    header nav ul li {
        font-size: 2em;
        
    }
    #voltar {
        display: inline;
        position: absolute;
        left: 1em;
        top: 1em;
        text-transform: lowercase;
        font-size: 3em;

    }
    footer {
        flex-direction: column;
    }


}

@media screen and (min-width: 820px) and (min-height: 1180px) {

    header h1 {
        font-size: 1.5em;
    }
}