body, html {
  margin: 0;
  padding: 0;
  height: 100vh;
  scroll-behavior: smooth;
  background: url("../images/findteetimes_background_upscayl_4x.png") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font-family: 'Roboto', sans-serif;
}

nav {
  position: fixed;
  width: 100%;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  z-index: 2;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

nav ul li a.cta {
  padding: 10px 20px;
  background-color: orange;
  color: white;
  border-radius: 5px;
}

section {
  height: 20vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-box {
  height: 20vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.content-box h2 {
  font-size: 3vh;
  margin: 10px;
}

.center-text {
  text-align: center;
  font-size: 3vh;
  margin-top: -16vh;
}
h1 {
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);

}

.content-box h1 {
  font-size: 5vh;
  margin: 10px;
}

@media (max-width: 900px) {
  nav ul {
      flex-direction: column;
      height: auto;
      padding-bottom: 8px;
  }
  nav {
    height: auto; /* This will let the nav expand vertically */
  }
  nav ul li a.cta {
      display: inline-block;
  }
  nav ul li {
    padding: 5px 0; /* This adds 10px padding top and bottom, adjust as needed */
  }

  .center-text {
      font-size: 3vh; /* adjust as needed */
      margin-top: 1vh;
  }
  
  .content-box h2 {
    font-size: 2vh; /* adjust as needed */
  }
  body, html {
    background: url("../images/findteetimes_background_mobile.png") center center scroll; 
    background-size: cover;
  }
}
