/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.full-screen-bg {
    background-image: url('background.jpg'); /* Background Image */
    background-size: cover;
    background-position: center;
    height: 100vh; /* Full screen height */
}

.coming-soon-content {
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.logo {
    max-width: 15%;
    margin-bottom: 20px;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.website-address, .phone-number {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    .website-address, .phone-number {
        font-size: 1.1rem;
    }
}
