@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root
{
    --header-flair-color: #3a89ff;
    --header-block-color: #303030;
    --header-text-color: #fff;
    --spacer-color: #d0d0d0;

    --footer-color: #3a89ff;
    --footer-button-color: rgba(255, 255, 255, 0.25);

    --info-bubble-color-1: #7dacf3;
    --info-bubble-color-2: #8eb4ed;
    --info-bubble-color-3: #3368b8;
    --info-bubble-color-4: #678cc4;
}

*
{
    margin: 0;
}

a
{
    font-weight: bold;
    text-decoration: none;
}
a, button
{
    cursor: pointer;
}

body
{
    font-family: "Nunito";
    font-size: 1.25vw;
}

footer
{
    align-items: center;
    background-color: var(--footer-color);
    color: white;
    display: flex;
    font-family: "Outfit";
    font-size: 1vw;
    padding: 0.75vw;
    vertical-align: center;
}
footer a
{
    color: white;
    font-weight: normal;
}
footer *
{
    margin: auto;
}

header
{
    background-color: var(--header-flair-color);
    display: flex;
    height: 3.75vw;
    width: 100%;
    position: fixed;
    z-index: 10000;

    transition: all 0.25s;
}
header .header-image
{
    background-color: var(--header-block-color);
    border-radius: 0.5vw;
    height: 5vw;
    margin-left: 7.5vw;
    padding: 1vw;
    width: 5vw;

    transition: all 0.5s;
}
header .header-item
{
    color: var(--header-text-color);
    padding-left: 4vw;
    align-self: center;
}
header #first-item
{
    padding-left: 7.5vw;
}

html
{
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6
{
    font-family: "Outfit";
}

.spacer
{
    background-color: var(--spacer-color);
    border-radius: 0.25vw;
    height: 0.5vw;
    margin: 5vw 25%;
    width: 50%;
}

#header-buffer
{
    padding-top: 10vw;
}

#back-to-top
{
    background-color: var(--footer-button-color);
    border: 0.125vw solid rgba(255, 255, 255, 0.375);
    border-radius: 0.25vw;
    color: white;
    font-family: "Nunito";
    font-size: 0.75vw;
    padding: 0.25vw 0.35vw;
}

#url-transitioner
{
    background-color: rgba(255, 255, 255, 0);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;

    transition: all 0.5s;
}
