*, *:after, *:before {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
    background-image: url(purple.png);
    background-repeat: no-repeat;
    background-size: cover;
}

header {
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

nav {
    justify-self: flex-start;
    width: 100%;
    max-width: 900px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: normal;
}

.main-menu {
    list-style: none;
    display: flex;
}

.main-menu li {
    margin-right: 10px;
    align-items: center;
    display: flex;
}

.main-menu li:last-of-type {
    margin-right: 0;
}

.wrapper {
    width: 70%;
    margin: auto;
}

h1 {
    text-align: center;
}

.radio-logo {
    font-family: 'DM sans';
}

.container {
    background-color: #ffffff;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 25px 40px;
    border-radius: 10px;;
}

.last-updated {
    font-style: italic;
}

.title-number {
    margin-right: 10px;
}

.section {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

ol {
    list-style-type:lower-alpha;
}

ol li {
    margin-bottom: 10px;
}

ol li:last-of-type {
    margin-bottom: 0;
}

table,
th,
td {
    border: 1px solid black;
    text-align: left;
    padding: 0 4px;
    border-collapse: collapse;
    font-size: 12px;
}

thead {
    background-color: rgb(219, 219, 219);
}

@media only screen and (max-width: 1024px) {
    header {
        flex-direction: column;
    }

    .main-menu {
        padding: 0;
        justify-content: center;
    }

    nav a {
        text-align: center;
        font-size: 15px;
    }

    .wrapper {
        width: 90%;
    }
}