body {
    padding: 0px;
    margin: 0px;
}

nav {
    height: 60px;
    font-size: large;
}

nav .wide {
    height: 60px;
    font-size: large;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

nav .narrow {
    display: none;
}

nav a {
    text-decoration: none;
    color: black;
    font-family: 'Roboto', sans-serif;
    margin: 20px;
    margin-top: 0px;
    margin-bottom: 0px;
}

nav .sitename {
    font-weight: bold;
    font-size: x-large;
}

.title {
    width: 100%;
}

.title img {
    width: 100%;
    object-fit: cover;
    height: 700px;
    object-position: 0px -400px;
}

.title h1 {
    font-size: 140px;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    position: absolute;
    top: 100px;
    left: 20px;
}

.gallery h5 {
    width: 100%;
    text-align: center;
    font-size: 75px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.gallery_images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

.gallery_images img {
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
}

.about {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.about img {
    width: 48%;
    height: fit-content;
    margin-left: 20px;
}

.about span {
    margin-left: 20px;
    margin-right: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: large;
}

.about h1 {
    font-family: 'Roboto', sans-serif;
    font-size: xx-large;
}

.trainings {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: xx-large;
    margin-left: 20px;
}

.trainings h1 {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    text-align: center;
}

.training_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}

.group h1 {
    font-size: xx-large;
    text-align: center;
}

.group h2 {
    font-size: x-large;
    text-align: center;
}

.contact {
    color: white;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: space-around;
}

.contact h1 {
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 650px) {
    nav .wide {
        display: none;
    }

    nav .narrow {
        display: block;
        height: 60px;
    }

    .narrow a {
        display: inline-block;
        width: fit-content;
        margin: 0px;
        margin-left: 20px;
        padding: 0px;
        margin-top: 15.25px;
    }

    .title h1 {
        font-size: 70px;
        max-width: 90%;
    }

    .title img {
        object-position: 50%;
        height: 500px;
    }

    .gallery_images img {
        width: 100%;
        height: fit-content;
    }

    .about {
        flex-wrap: wrap;
    }

    .about img {
        width: 100%;
        margin: 0px;
        margin-top: 0px;
    }

    .contact {
        flex-wrap: wrap;
    }

    .contact h2 {
        font-size: large;
    }
}

.dropbtn {
  background-color: #3c3c3c;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  height: 60px;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: block;
  float: right;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  right: 0px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #1c1c1c;
}