html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    /* Black background */
    color: #F9FAFB;
    /* text-gray-50 */
    overflow-x: hidden;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Slogan Text Classes */
.slogan-text {
    font-size: 2.5rem;
    /* Large font size for desktop */
    font-weight: 600;
    /* ExtraBold */
    line-height: 1.1;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    opacity: 0;
    /* Start invisible */
    animation: appearFromCenter 5s ease-out forwards;
    color: white;
}

@keyframes appearFromCenter {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.slogan-text+.slogan-text {
    margin-top: 2rem;
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Profile Text Classes */
.profile-text {
    font-size: 1rem;
    /* text-base */
    max-width: 800px;
    margin: 0.5rem auto 0;
    /* mt-0.5 */
    color: white;
    text-align: left;
    text-indent: -15px;
}

.profile-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.profile-subtitle {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    /* font-bold */
    max-width: 800px;
    margin: 1.5rem auto 0;
    /* mt-6 */
    color: white;
    text-align: left;
    text-indent: -15px;
}

.profile-header {
    font-weight: 500;
    /* font-medium */
}

.profile-sub {
    font-weight: 400;
    /* font-normal */
    padding-left: 15px;
}

.profile-sub-2 {
    font-weight: 400;
    /* font-normal */
    padding-left: 30px;
}

.profile-sub-3 {
    font-weight: 400;
    /* font-normal */
    padding-left: 45px;
}