body, html {
    height: 100%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

#vanta-bg {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative; /* Added for layering content above Vanta */
}

.hero-text {
    z-index: 1; /* Ensure text appears above Vanta effect */
    position: relative; /* Needed for z-index to take effect */
    font-size: 4rem;
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.telegram-link {
    display: inline-block;
}

.telegram-link img {
    width: 50px;
    height: auto;
    padding: 5px;
}

.email-link {
    display: inline-block;
}

.email-link img {
    width: 60px;
    height: auto;
}

.footer {
    z-index: 1; /* Ensure footer appears above Vanta effect */
    position: relative; /* Needed for z-index to take effect */
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    background: none;
}

h1 {
    font-size: 1em;
}

@media (min-width: 401px) {
    h1 {
        font-size: 2em;
    }    
}