#landingContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
    background-color: #f4f4f4;
}

#landingContainer h1 {
    font-size: 6rem;
    margin: 0 0 20px 0;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#landingContainer p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 0 40px 0;
    color: #666;
    line-height: 1.6;
}

#landingContainer svg {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

/* Interactive elements */
#landingContainer a {
    text-decoration: none;
    color: inherit;
}

#landingContainer rect {
    transition: fill 0.3s ease, fill-opacity 0.3s ease;
}

#landingContainer rect:hover {
    fill: white;
    fill-opacity: 0.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #landingContainer h1 {
        font-size: 4rem;
    }

    #landingContainer p {
        font-size: 1rem;
        padding: 0 20px;
    }

    #landingContainer svg {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    #landingContainer h1 {
        font-size: 3rem;
    }
}