@media (min-width: 800px) {
    .container {
        display: flex;
        align-items: start;
        justify-content: center;
    }

    .container-element {
        padding: 10px;
    }
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.nowrap {
    white-space: nowrap;
}

.centered {
    text-align: center;
}

.rounded img {
    border-radius: 50%;
}

nav {
    display: block;
    background-color: #06102D; /* HSL: 255, 75, 10 */
    color: #E2DFEC; /* HSL: 255, 25, 90 */
    margin: auto;
    font-size: 20px;
    padding: 15px;
    border-radius: 10px;
}

.navitem {
    background-color: #06102D; /* HSL: 255, 75, 10 */
    color: #E2DFEC; /* HSL: 255, 25, 90 */
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 4px;
    margin: auto;
}

.navitem:hover {
    background-color: #0D2059; /* HSL: 255, 75, 20 */
    transition: all 0.2s ease;
}

body {
    padding: 0 10px;
    margin: 10px auto;
    color: #06102D; /* HSL: 255, 75, 10 */
    background-color: #D2DCF9; /* HSL: 225, 75, 90 */
    font-family: sans-serif;
}

.content {
    /* max-width: 800px; */
    margin: 0 20px;
    line-height: 1.5;
}

h1,h2,h3 {
    line-height: 1.2;
}

table {
    border-collapse: collapse;
}

thead {
    background-color: #A6B9F2; /* HSL: 225, 75, 90 */
}

tbody tr:nth-child(even) {
    background-color: #BCCBF5; /* HSL: 225, 75, 85 */
}

th,
td {
    padding: 0.6em;
}

.scrollbox {
    white-space: nowrap;
    position: relative;
    overflow: auto;
}

.scrollbox div {
    float: none;
    display: inline-block;
}
