* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  text-decoration: none;
}

.navigation_container {
  width: 100%;
  background-color: blueviolet;
  color: aliceblue;
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  position: fixed;
  top: 0;
}


.brand_name {
  margin-left: 50px;
}

.items_container {
  display: flex;
  align-items: center;
}

.item {
  padding: 12px 20px;
  font-size: 18px;
  border-radius: 10px;
  font-weight: bold;
  color: aliceblue;
}

.item:hover {
  background-color: aliceblue;
  color: black;
  cursor: pointer;
}


.images_slideshow {
  margin-top: 75px;
}

.introduction {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.comparison {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.comparison-item {
  flex-basis: 45%;
  padding: 10px;
  border: 1px solid wheat;
}

.comparison-item h2 {
  color: black;
}

.comparison-item p {
  color: black;
}

.location img {
  width: 900px;
  height: 900px;
}

.location header,
main,
footer {
  padding: 20px;
}

.location h1 {
  font-size: 24px;
  text-align: center;
}

.title h2 {
  font-size: 20px;
  text-align: center;
}

.location p {
  font-size: 16px;
  line-height: 1.5;
  padding: 50px;
}

.location img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.footer {
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  margin-bottom: 0px;
}


.logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.logo h2 {
  font-size: 24px;
  margin: 0;
}

.social-media a {
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
  text-decoration: none;
}


footer p {
  margin: 0;
  text-align: center;
}


.social-media a:hover {
  opacity: 0.7;
}