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

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.page-background {
    width: 100%;
    height: 100%;
    background-image: url('../back.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 2rem;
    display: block;
}

.coming-soon {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-email {
    font-size: 1.1rem;
    color: #666;
    word-break: break-word;
}

@media (max-width: 768px) {
    .content-container {
        padding: 2rem 1.5rem;
    }

    .logo {
        max-width: 150px;
    }

    .coming-soon {
        font-size: 1.8rem;
    }

    .contact-email {
        font-size: 1rem;
    }
}