@media screen and (max-width: 440px){
    html
    {
        height: 95%;
    }

    body
    {
        height: 100%;
        width: 99%;
        background-color: rgb(112,195,204);
        color: white;
        font-family: "default";
    }

    .head-content
    {
        height: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content
    {
        height: 70%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .maintenance-text
    {
        font-size: 35px;
    }

    .plain-text
    {
        font-size: 25px;
    }


    .logo-container > img
    {
        height: 60px;
        width: 90vw;
    }

    .cloud
    {
        position: absolute;
        width: 100%;
        left: 0px;
    }

    .top_cloud
    {
        top:0px
    }

    .bottom_cloud
    {
        bottom: 0px;
    }
}

@media screen and (min-width: 441px){
    html
    {
        height: 95%;
    }

    body
    {
        height: 100%;
        width: 100%;
        background-color: #3b83e3;
        color: white;
        font-family: "default";
        margin: 0px;
    }

    .head-content
    {
        height: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content
    {
        height: 70%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .maintenance-text
    {
        font-size: 38px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .plain-text
    {
        font-size: 25px;
        font-weight: 600;
        line-height: 0.8;
    }


    .logo-container > img
    {
        height: 60px;
    }

    .cloud
    {
        position: absolute;
        width: 100%;
        left: 0px;
    }

    .top_cloud
    {
        top:0px
    }

    .bottom_cloud
    {
        bottom: 0px;
    }
}
