body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fade-in 2s ease-in-out forwards;
}

.coming-soon {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff5a5f;
}

.description {
    font-size: 24px;
    margin-bottom: 30px;
    color: #484848;
}

.email-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.email-form input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #dbdbdb;
    border-radius: 5px 0 0 5px;
    width: 250px;
}

.email-form button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #ff5a5f;
    color: #ffffff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
