* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: url('background.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #ffffff;
}

.overlay {
    background: rgba(0, 0, 0, 0.75);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content {
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00c3ff;
}

.coming {
    font-size: 18px;
    margin-bottom: 30px;
}

.emails p {
    margin: 8px 0;
    font-size: 16px;
}

footer {
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 22px;
    }

    .emails p {
        font-size: 14px;
    }
}
