/* General Styles */
body, html {
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    height: 100%;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

/* Header */
header h1 {
    font-size: 2.5em;
    margin: 0;
}

header p {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

/* Main Content */
.construction-info p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1em;
    margin-bottom: 5px;
}

.contact-info a {
    font-size: 1em;
    color: #0066ff;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    header p,
    .construction-info p,
    .contact-info p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }

    header p,
    .construction-info p,
    .contact-info p {
        font-size: 0.9em;
    }
}

