.s-pic {
    margin-top: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-pic img {
    height: 450px;
    width: 100%;
}

.adv {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.adv a {
    color: black;
    font-size: 25px;
    font-weight: bold;
}

#founder {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    background-color: aquamarine;
    padding-bottom: 20px;
}

#principal {
    background-color: cyan;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap-reverse;
    padding-bottom: 20px;
    color: black;
}

#f-info,
#p-info {
    margin: 10px 10px 0 10px;
    font-size: 1.9rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

#f-info img,
#p-info img {
    height: 260px;
    margin: 8px 0;
    border: 2px solid yellow;
    border-radius: 20px;
}

#f-msg,
#p-msg {
    border-radius: 10px;
    background-color: white;
    width: 400px;
    height: 400px;
    overflow: auto;
    padding: 18px 15px;
    font-size: 22px;
    color: black;
    margin: 30px 10px 0 10px;
}

.timing {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/img/background.jpg');
}

.opening {
    background-color: antiquewhite;
    margin: 30px 10px;
    padding: 10px;
    width: 500px;
    border-radius: 7px;
    border: 1px solid black;
}

.mon,
.tue,
.wed,
.thur,
.fri,
.sat,
.sun {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding: 5px;
    border-radius: 3px;
}

.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:600px) {
    .s-pic {
        margin-top: 30px;
    }

    .s-pic img {
        height: 225px;
    }

    .adv a {
        font-size: 17px;
    }

    #f-info {
        font-size: 1.2rem;
    }

    #p-info {
        margin-top: 30px;
        font-size: 1.2rem;
    }

    #f-info img,
    #p-info img {
        height: 200px;
        border-radius: 10px;
    }

    #f-msg,
    #p-msg {
        margin-top: 10px;
        padding: 7px 10px;
        width: 300px;
        font-size: 18px;
        height: 300px;
    }
}

@media (max-width:400px) {

    .opening {
        padding: 0 5px;
    }

    .mon h2,
    .tue h2,
    .wed h2,
    .thur h2,
    .fri h2,
    .sat h2,
    .sun h2 {
        font-size: 16px;
    }

    .mon,
    .tue,
    .wed,
    .thur,
    .fri,
    .sat,
    .sun {
        border-radius: 0;
    }
}