* {
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2, h3 {
    font-family: "Archivo", sans-serif;
    color: white;
    font-weight: 600;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
}

p, a, span {
    font-family: "Google Sans", sans-serif;
    color: white;
}

footer {
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
    position: absolute;
    bottom: 2rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 2rem 0 2rem;
}

footer p {
    color: #9c9c9c;
}

footer a {
    color: white;
    text-decoration: none;
    padding: 0 1rem 0 1rem;
}

footer a:hover {
    color: #EDF060;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: fadeIn 0.1s ease-in-out;
    background-color: #100B00;
}

@media screen and (max-width: 768px) {
    footer a {
        display: none;

    }

    footer p {
        font-size: .8rem;
    }
}