.header {
    font-size: 24px;
    font-family: "Geist";
    color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    margin-top: 14px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 0px;
}
.header {
    opacity: 0;
    transform: translateY(-50px);
    animation: SlideLeft 1s forwards;
}
@keyframes SlideLeft {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
body {
    background-color: rgb(12, 11, 27);
}
.small-pfp {
    height: 50px;
    width: 50px;
    border-radius: 25px;
    object-fit: contain;
    object-position: center;
}
.subheader {
    font-family: "Geist";

    display: flex;
    flex-direction: row;
    color: #FFFFFF;
}

.main {
    height: calc(100vh - 200px);
    margin-top: 0px;
    padding: 16px 32px 16px 32px;
    margin-left: auto;   /* same as mx-auto */
    margin-right: auto;

    max-width: 1000px;    /* same as max-w-2xl (~672px) */
}

.container {
    height: 100%;
}
.one, .two, .three, .four {
    display: flex;
    max-width: 100%;
    height: 25%;
    margin: 5px 0px 5px 0px;
    column-gap: 5px;
}
.small {
    height: 100%;
    flex-grow: 1;
    width: 100%;
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}
.long {
    height: 100%;
    flex: 3;
    flex-grow: 2;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.small-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.long-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Base animation state */
.small, .long {
    opacity: 0;
    transform: translateY(50px);
    animation: slideIn 0.7s ease forwards;
}
.subheader {
    font-family: "Geist";
    font-size: 32px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideRight 1s forwards;
}
@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* Staggered animation timing */
.one .small { animation-delay: 0.1s; }
.one .long  { animation-delay: 0.2s; }

.two .small:nth-child(1) { animation-delay: 0.3s; }
.two .small:nth-child(2) { animation-delay: 0.4s; }
.two .small:nth-child(3) { animation-delay: 0.5s; }

.three .long  { animation-delay: 0.6s; }
.three .small { animation-delay: 0.7s; }

.four .small:nth-child(1) { animation-delay: 0.8s; }
.four .small:nth-child(2) { animation-delay: 0.9s; }
.four .small:nth-child(3) { animation-delay: 1s; }

/* Keyframes */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

a:visited {
    color: white;
    text-decoration: none;
}
.fancy {
    font-weight: 600;
    background-image: linear-gradient(to bottom right, #ffffff, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

body {
    margin: auto;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: auto;
    background: linear-gradient(315deg, rgb(12, 11, 27) 3%, rgb(12, 11, 27) 38%, rgb(80, 80, 90) 68%, rgb(12, 11, 27) 98%);
    animation: gradient 5s linear forwards;
    background-size: 400% 400%;
    background-attachment: fixed;
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.wave {
    background: rgba(57, 54, 74, 0.5);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}