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

body {
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #ffffff;
    text-align: center;
    overflow-x: hidden;
}

.scroll-wrapper {
    position: relative;
    height: 100vh;
    overflow-y: auto;
}

/* Custom scrollbar */
.scroll-track {
    position: fixed;
    top: 0;
    right: 0;
    width: 12px;
    height: 100%;
    background: #1a1a1a;
}

.scroll-thumb {
    position: absolute;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff0000, #ff7f7f);
    border-radius: 6px;
    transition: height 0.2s, top 0.2s;
}

.scroll-wrapper:hover .scroll-thumb {
    background: linear-gradient(135deg, #e60000, #e67373);
}

/* Content Container */
.container {
    padding: 20px;
    position: relative;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3em;
}

.gradient-text {
    background: linear-gradient(270deg, #ff0000, #00ff00, #0000ff, #ffff00, #00ffff, #ff00ff);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 10s ease infinite;
}

.red-gradient-text {
    background: linear-gradient(135deg, #ff0000, #ff7f7f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.grey-gradient-text {
    background: linear-gradient(135deg, #8e8e8e, #d1d1d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.posts-link {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.posts-link a {
    color: #ff7f7f;
    text-decoration: none;
    font-size: 1.2em; /* Adjust font size as needed */
}

.posts-link a:hover {
    text-decoration: underline;
}

.about, .socials, .contact, .thank-you {
    padding: 100px 0;
}

h2 {
    font-size: 2em;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons img {
    width: 50px;
    height: 50px;
}

.contact a {
    color: #ff7f7f;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

footer.thank-you h2 {
    font-size: 3.2em;
}
.captures-link {
    padding: 20px 0;
}
.captures-link a {
    font-size: 1em;
    text-decoration: none;
}
.captures-link a:hover {
    text-decoration: underline;
}