/* Background */
body {
    background: linear-gradient(135deg, #6a8ff7, #74d4c8);
}

/* Container */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    position: relative;
    text-align: center;
}

/* Window Outline */
.coming-soon-window {
    width: 300px;
    height: 200px;
    border: 2px solid white;
    border-radius: 10px;
    position: relative;
    background: transparent;
}

/* Ribbon */
.coming-soon-ribbon {
    background: #3070cf;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: coming-soon-fadeIn 2s ease-in-out;
}

/* Animation */
@keyframes coming-soon-fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}