/* fontes */
@font-face {
    font-family: comfortaa;
    src: url(../assets/fonts/comfortaa/Comfortaa-Regular.ttf);
    font-weight: 500;
}

/* reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* tentativa de esconder a barrinha lateral :3 */
html {
    height: 100%;
    scrollbar-width: none;
}

.element::-webkit-scrollbar { width: 0 !important }
.element { overflow: -moz-scrollbars-none; }
.element { -ms-overflow-style: none; }

body {
    font-family: "comfortaa", 'Trebuchet-MS', sans-serif;
    color: rgb(239, 237, 237);
    background: rgb(0,0,5);
    background: linear-gradient(180deg, rgba(0,0,5,1) 0%, rgba(7,7,13,1) 38%, rgba(32,32,83,1) 79%);
    background-attachment: fixed;
    min-width: 100%;
    padding-bottom: 190px;
    position: relative;
}

/* barra de navegação */
a {
    text-decoration: none;
    color: #f0f8ff;
    font-weight: 570;
}

ul {
    list-style: none;
    display: flex;
    gap: 1.5em;
}

#logo {
    font-size: 1.6em;
    font-weight: bold;
}

nav#menu {
    display: flex;
    justify-content: space-around;
    margin: 1.5em;
    align-items: baseline;
    text-align: center;
}

li.menu_item a:hover {
    color: #e6f821;
}

li.menu_item a:after {
    display:block;
    content: '';
    border-bottom: solid 3px #e6f821;  
    transform: scaleX(0);  
    transition: transform 800ms ease-in-out;
}


li.menu_item a:hover:after {
transform: scaleX(1);
}

i {
    color: rgb(245, 255, 105);
    cursor: pointer;
    transition: all .5s ease 0s;
}

i:hover {
    color: #fffed4;
}

/* conteúdo principal */

main {
    padding: 2em;
    margin: 5em;
    gap: 2em;
    display: flex;
    text-align: center;
    text-align: justify;
}

main p{
    padding: 0 5em;
    line-height: 2em;
}

#title{
    font-size: 3em;
    margin-bottom: 1.5em;
    padding: 0 5em;
    text-align: center;
}

div.svg-small{
    display: none;
}

#buttons  {
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 2em;
    margin: 3.5em;
}

#buttons button {
    width: 250px;
    padding: 1.2em;
    height: 66px;
    border-radius: 20px;
    border: 1px solid #f0f8ff;
    color: #f0f8ff;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .175em;
    background-color: transparent;
    position: relative;
    transition: 1.2s;
}

#buttons button:hover{
    color: #2b2e0a;
    border: none;
}

#buttons button::before {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 66px;
    background-color: #f5f9c2;
    transition: 1.2s;
    border-radius: 20px;
    z-index: -1;
}

#buttons button:hover::before{
    width: 100%;
}

/* Rodapé */

footer{
    display: flex;
    padding: 2em;
    gap: 4em;
    justify-content: flex-end;
    background-color: rgba(0,0,5,.6);
    position: absolute;
    bottom: 0;
    width: 100%;
    /* height: 60px; */
    align-items: center;
}
