/* RESET */
* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
}

/* GLOBAL */

a{
    text-decoration: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #041331;
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DADFE8;
} 