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

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.background-image {
    background: url('Coming_Soon.png') no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 100vh;
}

.contact {
    position: absolute;
    bottom: 10%;
    width: 100%;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
    font-size: 1.2em;
}

.contact a {
    color: #333;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .contact {
        font-size: 0.9em;
        padding: 0 20px;
    }
}
