body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #907ced;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
}

.logo {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.company-name {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 10px;
}

.coming-soon {
    font-size: 1.5em;
    color: #000000;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .company-name {
        font-size: 2em;
    }

    .coming-soon {
        font-size: 1.2em;
    }
}
