body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../img/3d-rendering.jpg') no-repeat center center/cover; /* Background Image */
}

.coming-soon-container {
    text-align: center;
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

.coming-soon-container h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.coming-soon-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.coming-soon-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.notify-form {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.notify-form input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.notify-form button {
    padding: 10px;
    font-size: 1rem;
    border: none;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.notify-form button:hover {
    background-color: #d63a29;
}

.follow-us {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.social-icons a {
    margin: 0 10px;
    display: inline-block;
}

.social-icons img {
    width: 30px;
    height: 30px;
}