body {
    background: white;
    background-image: url("littleoaks.png");
    background-repeat: repeat-x;
    background-position: center top;
    padding-top: 240px;
    margin: 0px;
    font-family: 'Roboto', sans-serif;
    font: 'Roboto';
}

#menu {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    text-align: center;
    display: flex;
    justify-content: center;
    box-shadow: 0px 5px 2px 0px rgba(0, 0, 0, 0.05);
}

.menuItem {
    height: 40px;
    margin-left: 10px;
    margin-right: 10px;
}

.menuItem a {
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    color: #ec1c21;
    padding-left: 10px;
    padding-right: 10px;
}

.menuItem a.linkSelected {
    background: #ec1c21;
    color: white;
}

#contentArea {
    flex-grow: 1;
    margin-top: 10px;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0px;
}

#container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
    body {
        background-size: auto 80px;
        padding-top: 80px;
    }
    .menuItem {
        height: 25px;
    }
    .menuItem a {
        font-size: 18px;
    }
}