/* Existing styles */
body {
    background-color: #000000; /* Black background */
    color: #FFFFFF; /* Default text color */
    font-family: "Red Hat Text", sans-serif;
}

.hero-section {
    height: 100vh; /* Full viewport height */
    background-color: #000000;
}
.info{
    background-color: #000000;
    position: relative;
    z-index: 2;
    width: 100%;
    box-shadow: 0px 0px 100px rgba(0, 0, 0,1); /* Add shadow effect */
}
.p{
    z-index: 2;
}

.hero-section h1 {
    z-index: 2;
    position: absolute;
    top: 0%;
    left: 0%;
    font-size: 70dvw; /* Huge text */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* Needed for correct positioning */
    flex-direction: row; /* Default is horizontal */
    letter-spacing: -2cm;
    font-weight: 400; /* Adjust font weight for better display */

}

.hero-section h1 .letter,
.hero-section h1 .letter-s {
    color: #e4e4e4; /* Original text color */
}
.p{
    position: relative;
    z-index: 2;
}
.fixed-y {
    
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-37.5%, -50%);
    z-index: 1;
}

.letter-y {
    color: #000000;
    text-shadow: 0 0 30px #8c00ff;
    font-size: 70dvw;
    font-weight: 400; /* Adjust font weight for better display */

}


@media (max-width: 1200px) {
    .hero-section h1 {
        flex-direction: column; /* Change to vertical stack on mobile */
        font-size: 15rem; /* Adjust font size for better display on mobile */
    }
    .hero-section h1 .letter,
    .hero-section h1 .letter-s,
    .letter-y {
        letter-spacing: 0;
        font-size: 15rem; /* Adjust letter size for mobile */
        line-height: 0.75; /* Adjust line-height for spacing */
        font-weight: 500; /* Adjust font weight for better display */
    }
    .fixed-y{
        transform: translate(-54%, -0%);
    }
}

.main-button{
    background-color: #8c00ff;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 50px;
}