body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 0 20px;
}

.logo-container {
    margin-bottom: 40px;
}

#logo {
    max-width: 80%;
    height: auto;
    max-height: 200px;
}

.text-container {
    max-width: 600px;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta {
    font-size: 1.2rem;
    line-height: 1.6;
}

a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .cta {
        font-size: 1rem;
    }
}