body{
    min-height:100vh;
    display:flex;
    justify-content: center;
    align-items: center;
    background-color: aqua;
}

.container{
    display:flex;
    margin-bottom: 50px;
}
.box{
    background-color: greenyellow;
    border: 3px solid green;
    border-radius: 30px;
    padding: 50px;
    margin: 10px;
    text-align: justify-all;
}

.our-schools{
    justify-content: normal;
    align-items: center;
    text-align: center;
    margin: 0;
}
h1{
    font-size: 40px;
    font-family: "Arial Unicode MS", cursive;
    margin: 0;
}

.table{
    font-family: sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

table{
    border-collapse: collapse;
}

th{
    font-family: Geneva, serif;
    padding: 10px;
    border: 1px solid white;
    background-color: black;
    color: aqua;
}

td{
    padding: 10px;
    border: 1px solid white;
    background-color: black;
    color: aqua;
}

@media screen and (max-width: 800px){
    .container{
        display: none;
    }

    thead{
        display: -moz-inline-block;
    }
    th:nth-child(1){
        text-align: center;
        color: aqua;
        background-color: black;
    }
    th:nth-child(2){
        text-align: center;
        color: aqua;
        background-color: black;
    }

    td{
        display: block;
    }
    td:nth-child(odd){
        text-align: center;
        color: aqua;
        background-color: black;
    }
    td:nth-child(even){
        text-align: center;
        color: aqua;
        background-color: black;
    }
}
