body {
  background-color: #edb390;
  color: #000;
  font-family: Arial, sans-serif;
  padding: 0;
}

/* HEADER */

.header {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.header-logo {
  margin-right: 40px;
}

.title {
  margin: 0;
  font-size: 1.9em;
  padding-right: 20px;
}

.header-flags {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 28px;
  margin-top: -180px;
}

.flag {
  width: 28px;
  height: auto;
}

/* CITIES */

.cities-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cities {
  display: flex;
  align-items: flex-start;
}

.map {
  width: 600px;
  height: 300px;
  border: none;
  margin-right: 100px;
}

.cities-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.city-name {
  margin-bottom: 10px;
}

.city-link {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

.city-link:hover {
  color: #ffffff;
}

/* VALUES */

.values-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0;
}

.values {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-title {
  margin-bottom: 20px;
  text-align: center;
}

.values-list {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.values-description {
  background-color: #e58331;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 15px;
  text-align: center;
}

.values-text {
  margin: 0;
  font-size: 1.2em;
}

/* FOOTER */

.footer {
  color: #000000;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact {
  margin-bottom: 15px;
  font-size: 1.2em;
  font-weight: bold;
}

.name,
.mail,
.telefon {
  margin: 3px 0;
}

.contact-span {
  font-weight: bold;
}

.mail,
.telefon {
  color: #000000;
  text-decoration: none;
}

.mail:hover,
.telefon:hover {
  color: #ffffff;
}

/* MEDIA TO 768px */

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .header-logo {
    margin: 0;
    padding: 0;
    width: 200px;
  }

  .header-text {
    padding: 0 30px 0 30px;
  }

  .header-flags {
    margin-top: 24px;
  }

  .title {
    font-size: 1.5em;
    padding-right: 0;
  }

  .cities {
    flex-direction: column;
    padding: 10px;
    justify-content: center;
    align-items: center;
  }

  .map {
    width: 100%;
    height: 300px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .cities-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .city-name {
    margin-bottom: 5px;
  }

  .values {
    width: 100%;
    padding: 0 10px 10px 10px;
    margin-top: -30px;
  }

  .values-list {
    flex-direction: column;
  }

  .values-description {
    font-size: 1em;
    margin: 10px 0;
  }
}

/* MEDIA TO 480px */

@media (max-width: 480px) {
  .header {
    padding: 10px;
  }

  .header-text {
    padding: 0 30px 0 30px;
  }

  .title {
    font-size: 1.2em;
  }

  .map {
    height: 200px;
  }

  .values-title {
    font-size: 1.5em;
  }

  .values-text {
    font-size: 1em;
  }

  .footer {
    padding: 5px;
  }

  .contact {
    font-size: 1em;
  }

  .name,
  .mail,
  .telefon {
    font-size: 0.9em;
  }
}
