body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

* {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

#prevp, #nextp, #prntp {
    position: absolute;
    bottom: 5px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: cadetblue;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#prevp {
    left: 5px;
}

#nextp {
    right: 5px;
}

#prntp {
    left: calc(50vw - 15px);
}

.weeks {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 100%;
}

.weeks > div {
    padding: 20px;
}

.weekn {
    color: gray;
    width: 30%;
}

.weekt {
    width: 40%;
}

.day {
    margin: 0;
    padding: 0;
}

.meal {
    margin: 0;
    margin-bottom: 20px;
}

.weekn > .day {
    font-size: 8px;
}

.weekt > .meal {
    font-size: 28px;
}

.loginform {
    position: absolute;
    top: 5px;
    left: 5px;
}

@media only screen and (max-width: 700px) {
    .weeks {
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 40px;
    }

    .weeks > div {
        width: 100%;
        text-align: center;
    }

    .weeks > div:first-of-type {
        display: none;
    }
}