* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Clock styling */
.clock {
    position: fixed;
    top: 20px;
    right: 20px;
    text-align: right;
    z-index: 1000;
}

.time {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.location {
    font-size: 0.7rem;
    opacity: 1;
    font-weight: 300;
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
}

/* Logo styling */
.logo-container {
    margin-bottom: 4px;
}

.logo {
    display: block;
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: brightness(1);
}

/* Description styling */
.description {
    max-width: 600px;
    margin: 0 auto;
}

.description p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 1;
    letter-spacing: 0;
    margin-top: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .clock {
        top: 15px;
        right: 15px;
    }
    
    .time {
        font-size: 0.8rem;
    }
    
    .location {
        font-size: 0.6rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .clock {
        top: 10px;
        right: 10px;
    }
    
    .time {
        font-size: 0.7rem;
    }
    
    .location {
        font-size: 0.5rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .description p {
        font-size: 0.95rem;
    }
} 

/* Wider layout for large screens */
@media (min-width: 1024px) {
    .description {
        max-width: 1000px;
    }
}