* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.416), rgba(16, 8, 255, 0.132)),
    url(../img/comming_soon.png);
    width: 100%;
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.coming-container {
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.4);
    background-color: rgb(204, 80, 8);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    color: #e6e6e6;
}

.school-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.school-name {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
}

.school-name span {
    font-weight: 400;
}

.long-text {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 20px;
}

@media (max-width: 1323px){

}

/* Responsive */
@media (max-width: 900px) {
    .coming-container {
        width: 70%;
        padding: 15px;
    }
    .school-logo {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }
    .school-name {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .long-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .coming-container {
        width: 90%;
        padding: 15px;
    }
    .school-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 12px;
    }
    .school-name {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .long-text {
        font-size: 14px;
    }
}
