body {
    background: #C7C9F9;
    font-family: 'Roboto', sans-serif;
}
#tabs {
    display: flex;
    flex-wrap: wrap;
}
footer {
    display: flex;
    flex-wrap: wrap;
}

/* Tab selectors */
#tabs input[type="radio"] {
    display: none;
}
#tabs label {
    padding: 25px;
    font-weight: bold;
    color: #0100BE;
    cursor: pointer;
    width: 100px;
    align-content: center;
}
#tabs input[type='radio']:checked + label + .tabContent {
    display: block;
}
#tabs input[type="radio"]:checked + label {
    background: #b8baf7;
    border-radius: 5px 5px 0 0;
}
#tabs .tabContent {
    width: 100%;
    padding: 20px;
    order: 1;
    display: none;
    border-radius: 5px;
    background: #b8baf7;
}

/* Content blocks */
.tabContentBlock{
    padding: 20px;
    margin: 10px;
    background: white;
    border-radius: 5px;
}
.footerContentBlock{
    margin: 10px;
    align-content: center;
}

/* Images etc... */
#logo {
    height: 60px;
    padding: 5px 10px;
    background: #C7C9F9;
}
.personPicture {
    height: 200px;
}
.footerLogo img {
    height: 100px;
}