* {
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* cores da marca */
:root {
    font-size: 62.5%;
    
    --main: #263788;
    --secondary: #071339;
    --tertiary: #fafafa;
}

::selection {
    background-color: var(--main);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
    background: #F2F2F2;
}

::-webkit-scrollbar-thumb {
    background: var(--main);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

a {
    text-decoration: none;
    font-style: none;
}

body {
    font-family: "Inter", sans-serif;

    background: linear-gradient(217deg, var(--main), var(--secondary));
    background-repeat: no-repeat;
    background-size: cover;

    height: 100vh;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
}

div#logo {
    text-align: center;

    margin-bottom: 10vh;
}

#logo svg {
    fill: white;
    filter: drop-shadow(0 0 5px rgba(255,255,255, .5));

    width: 50vw;
}

main {
    width: 90vw;
    margin: 0 auto;
}

ion-icon {
    font-size: 1.9rem;
}

ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

li {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    gap: .5rem;
    
    color: white;
    border: 1px solid rgba(255,255,255, .75);
    background-color: rgba(0,0,0,.35);
    padding: .35rem 0;
    border-radius: 2rem;
    box-shadow: 0 0 5px rgba(255,255,255, .5);
    
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 300;
    
    cursor: pointer;
    transition: 150ms ease;
}

li:hover {
    background-color: rgba(0,0,0,.75);
    letter-spacing: 1px;
}

li a {
    color: white;
}

/* iPads e tablets */
@media (min-width: 500px) {
    main {
        width: 75vw;
    }

    ion-icon {
        font-size: 2.5rem;
    }
    
    ul {
        gap: 1.25rem;
    }
    
    li {
        gap: 1rem;
        
        padding: .45rem 0;
        
        font-size: 1.8rem;
    }
}

/* Desktop */
@media (min-width: 980px) {
    #logo svg {
        width: 25vw;
    }

    main {
        width: 50vw;
    }
}