body {
    background-color: aqua;
}

#admission {
    color: black;
    background-color: #ccffff;
    padding: 5px 60px;
    font-size: 19px;
    border: 2px solid black;
    margin-top: 30px;
}

#apply {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 43px;
}

#apply img {
    border: 2px solid black;
    border-radius: 20px;
}

.network-status {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 5px 0;
    background-color: rgb(16, 169, 16);
    color: white;
    font-family: arial;
    font-size: 1.2em;
    transition: all 0.5s;
}

.network-details {
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px #000;
    letter-spacing: 1px;
    font-weight: 700;
}

@media (max-width:900px) {
    #admission {
        margin-top: 10px;
        padding: 2px 35px;
    }

    #apply img {
        height: 170px;
        border-radius: 10px;
    }

    #admission h1 {
        font-size: 1.7rem;
    }

    #admission h2 {
        font-size: 1.5rem;
    }

    #admission ul li {
        font-size: 18px;
    }
}

@media (max-width:400px) {
    #admission {
        padding: 2px 2px 2px 19px;
    }

    #admission h2 {
        font-size: 1.2rem;
    }

    #apply img {
        width: 60%;
        border: 0;
    }
}