/* Style the app of body */
body {
    position: relative;
    top: -1px;
}

.AppBody {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background: rgb(255, 255, 255);
    border-top-left-radius: 1.7vw;
    border-bottom-left-radius: 1.7vw;
    border-top-right-radius: 1.7vw;
    border-bottom-right-radius: 1.7vw;

    width: 100%;
    height: 100%;
    max-width: 80%;

    box-shadow: 0px 7px 77px rgba(57, 57, 57, 0.1);
}

@media screen and (max-width: 1024px){
    .AppBody {
        max-width: 100%;
    }
}

    @media screen and (max-width: 900px){
        .AppBody {
            box-shadow: unset;
        }
    }