body {
    margin: 0;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    top: 0;
    background-color: #ffffff;
}

.coming-soon-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    max-width: 80vw;
    height: auto;
    width: 600px;
    opacity: 0;
    margin-top: -50px;
    transform: translateY(-50px);
    animation: fadeSlideIn 1.5s ease-out forwards;
}

.animated-text {
    max-width: 80vw;
    width: 250px;
    height: auto;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff5733;
    opacity: 0;
    margin-top: -50px;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.ptext {
    margin: 40px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease-out 2.5s forwards;
}

.contact-details {
    margin-top: 20px;
    max-width: 80vw;
    font-size: 1rem;
    color: #082b47;
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 1s ease-out 3.5s forwards;
}

/* Keyframes */
@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
