* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Major Mono Display', monospace;
    height: 100vh;
    background-image: url('img/_perseverance.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 38px 24px;
    color: white;
    text-align: left;
    position: relative;
}

/* Overlay for better text readability */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.main-title {
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    width: 100%;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.server-info {
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
}