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

body {
    background-color: #1a1a1a;
    font-family: 'Raleway', sans-serif;
    color: #fff;

    margin: 0px 0px;

    scroll-behavior: smooth;
}

button {
    border: none;
    outline: none;
    
    padding: 1em;
    border-radius: 0.25em;
    background: transparent;
    color: #fff;
    font-size: 12pt;

    cursor: pointer;

    font-weight: bold;
}

h1 {
    margin-top: 0;
    margin-bottom: 0;
}

.button-fancy {
    border: 2px #ffc376 solid;
    color: #ffc376;

    background: linear-gradient(180deg, transparent 50%, #ffc376 50%);
    background-size: auto 200%;
    background-position-y: -0%;
    
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);;
}

.button-fancy:hover {
    color: #2a2a2a;
    background-position-y: 100%;   
}

.button-link {
    color: #888
}

.logo {
    height: 12em;
    object-fit: scale-down;
    aspect-ratio: 1/1;
}

/* Navigation bar */
.navbar {
    background-color: #2a2a2a;

    width: 100%;
    height: 48px;

    position: fixed !important;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar > div {
    margin-left: 1rem;
    margin-right: 1rem;
}

.intro {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.button-row {
    justify-content: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

/* Flex utility */
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-hard-center {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;
    margin-left: 1em;
    margin-right: 1em;
}

.flex-row-gap {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.flex-col-gap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media ( min-width: 480px ) {
    .intro {
        flex-direction: row;
        align-items: center;

        text-align: left;
        gap: 1em;
    }

    .button-row {
        justify-content: flex-start;
    }
}