body {
  padding: 0;
  height: 100vh;
  font-family: Helvetica, sans-serif;
  background-color: #2e8173;
}

.nav-bar {
  padding-right: 30px;
  padding-top: 20px;
}

.nav-bar ul {
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.nav-bar a {
  color: white;
  text-decoration: none;
  font-size: 20px
}

.nav-bar a:hover {
  color: black;
} 

.hero-image {
  background-image: url("images/Tokyo5.webp");
  background-position: center;
  background-size: cover;
  height: 90%;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}

.hero-text  {
  color: #ffffff;
  text-align: center;
  margin: 50px;
}

.hero-text h1 {
  font-size: 100px;
  font-weight: 700;
  text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000
}

.hero-btn {
  text-decoration: none;
  color: white;
  background: black;
  padding: 10px 30px;
  border-radius: 5px;
  margin-top: 0;
  display: inline-block;
}

.hero-btn:hover {
  background: white;
  color: black;
}

.fun-facts {
  background-color: #4abba9;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 10px;
  border-radius: 20px;
}

.facts {
  font-size: 20px;
  padding: 20px;
}

.facts li {
  line-height: 2.5;
}

.fun-facts-title {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  padding-top: 20px;
}

.logo-image {
  width: 60px;
  height: 40px;
  padding:5px;
}

.footer-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media only screen and (max-width: 425px) {
  .nav-bar ul {
    flex-direction: column;
  }
}