a {
    color: inherit;
}

body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

h2 {
    text-align: center;
}

h3 {
    text-align: center;
}

.go-home {
    height: 80px;
}

.click-to-start {
    font-size: 80%;
    margin-top: 10px;
}

.centered {
    text-align: center;
}

.footer {
    font-style: italic;
    text-align: center;

    background-color: whitesmoke;
    border-top: 2px solid gray;

    padding: 20px 0 20px 0;
}

.settings-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;

    padding: 10px;
}

.translation-settings {
    text-align: right;
}

.gallery {
    padding: 25px;

    /* flex stuff */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /*align-items: center;*/
    gap: 30px;
}

.gallery img {
    border-radius: 10px;
    max-height: 200px;
}


/* -------------------------------------------------------------------------- */
/* Media Queries                                                              */
/* -------------------------------------------------------------------------- */

@media only screen and (max-width: 1024px) {
    .gallery {
        gap: 20px;
    }

    .gallery img {
        max-height: 100px;
    }
}

@media only screen and (max-width: 512px) {
    .gallery {
        gap: 10px;
    }

    .gallery img {
        max-height: 75px;
    }
}
