@font-face {
    font-family: thrashBox;
    src: url(Trashbox.ttf);
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.nav-wrapper {
    background-color: #000;
    display: flex;
    justify-content: center;
    /* center the nav inside wrapper */
}

nav {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    /* logo left, links take remaining space */
    background-color: #000;
    padding: 10px 0;
}

.nav-logo {
    font-family: thrashBox;
    color: #fff;
    font-size: 2.8em;
    text-align: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    /* center links inside this container */
    gap: 40px;
    /* equal spacing between links */
    flex: 1;
    /* take remaining space next to logo */
    white-space: nowrap;
    /* nobr */
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1em;
    line-height: 50px;
    text-align: center;
    padding: 10px 0;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    color: #00b9fb;
}

.nav-logo a {
    text-decoration: none;
    color: #fff;
}

.nav-logo a:hover {
    color: #fff;
}

.main-content {
    width: 70%;
    margin: 0 auto;
}

.main-content .italic {
    font-style: italic;
}

.main-content h1,
.main-content h4 {
    text-align: center;
    /* color: #00b9fb; */
}

.main-content a {
    color: #b00;
}

.main-content a:hover {
    text-decoration: none;
}

.show-thumbnail {
    text-align: center;
}

.show-thumbnail img {
    width: 50%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

.about-thumbnail img {
    width: auto;
    height: auto;
    max-height: 400px;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
}

p {
    line-height: 150%;
}

.programmes-list {
    line-height: 180%;
}

footer {
    margin: 20px auto;
    padding-top: 20px;
    font-size: x-small;
    text-align: center;
}

footer hr {
    width: 70%;
}

footer a {
    color: inherit;
    text-decoration: none;
}

footer a:hover {
    color: #00b9fb;
}

.hamburger-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 600px) {
    .nav-links {
        display: none;
    }

    .hamburger-icon {
        display: block;
    }

    .nav-logo {
        font-size: 2.3em;
    }

    .show-thumbnail img {
        width: 100%;
    }
}