/* Welcome Section */
html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
   
}
#welcome {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('assests/Snapchat-518421313~2.jpg') no-repeat center center/cover;
}
#welcome::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(24, 24, 24, 0.5); /* Adjust opacity for dimming */
    z-index: 1;
}
/* Stars Canvas */
#welcomeCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

/* Centered Text */
.welcome-content {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 2;
}

.welcome-content h1 {
    font-size: 60px;
    margin: 0;
}

.welcome-content p {
    font-size: 24px;
    color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-content h1 {
        font-size: 40px;
    }

    .welcome-content p {
        font-size: 20px;
    }
}
