body {
    font-family: 'Courier New', monospace;
    background-color: #11121d;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    overflow: hidden;
}

/* Apply animation to elements */
h1, h2, h3, sub, hr, .content, .logo {
    animation: slideFadeIn 1.5s ease-out;
}

/* Ensure the logo is properly visible */
.logo {
    width: 900px;
    margin-bottom: 20px;
    animation-delay: 0.2s;
    position: relative; /* Ensures proper positioning */
    display: block; /* Prevents inline spacing issues */
}

/* Text styling */
h1 {
    font-size: 120px;
    opacity: 0.9;
    margin-bottom: 20px;
    animation-delay: 0.3s;
}

h2 {
    font-size: 80px;
    opacity: 0.85;
    margin-bottom: 50px;
    animation-delay: 0.6s;
}

h3 {
    font-size: 50px;
    opacity: 0.85;
    margin-bottom: 50px;
    animation-delay: 0.9s;
}

sub {
    opacity: 0.7;
    font-size: 0.8em;
    animation-delay: 1.2s;
}

/* Line separator */
hr {
    width: 60%;
    border: 1px solid #ffffff;
    margin: 20px auto;
    opacity: 0.5;
    animation-delay: 1.5s;
}

/* Hover effect for hr */
hr:hover {
    border-color: #ff4b5c;
    cursor: pointer;
}

/* Padding for content */
.content {
    text-align: center;
    padding: 20px;
}

/* Keyframes for smooth fade-in and slide-down */
@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
