@media screen and (max-width: 768px) {
    .body{
        max-width: 100%;
        /* background-color: aquamarine; */
        /* height: 100%;  */
    }
}

@media screen and (min-width: 768px) {
    .body{
        margin-right: auto;
        margin-left: auto;
        max-width: 768px;
        /* background-color: bisque;  */
    }
}

body, html {
    /* height: 100%; */
    margin-top: 30px;

}

#container{
    background-color: rgb(255, 255, 255);
    /* height: 100%; */
}



