body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    background-color: #79d8d4; 
    color: white;
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; 
    text-align: center;
    padding: 20px;
}

.logo img {
    width: 400px; 
    margin-bottom: 1px;
}

.logo h2 {
    font-size: 18px;
    font-weight: 300;
    margin: 0;
}

h1 {
    font-size: 32px;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 100;
}

.contact {
    display: flex;
    align-items: center;
    gap: 10px; 
    margin-top: 20px;
}

.contact img {
    width: 20px; 
    height: auto;
}

.contact a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

.contact a:hover {
    text-decoration: underline;
}
@media (max-width: 991px) {
    h1 {
        font-size: 28px;
    }
}