.container-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 100vh;
  color: white;
  font-family: Lexend;
}

.container-content h1 {
  font-family: Monomaniac One;
  font-size: clamp(2rem, 5vw, 4rem);
  text-shadow: 2px 2px #000;
  padding: 0 20px;
  margin-top: 60px;
}

.content {
  min-height: 100%;
  width: 100vw;
  display: flex;
  padding: 20px;
  justify-content: center;
}

.box {
  width: 400px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left {
  width: 30%;
}

.map {
  width: 90%;
  height: 100px;
  margin: 5px 0;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.one {
  background-image: url("../media/Ascent.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.two {
  background-image: url("../media/Bind.jpg");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.three {
  background-image: url("../media/Haven.jpg");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.four {
  background-image: url("../media/IceBox.jpg");
  background-size: cover;
  background-position: center 10%;
  background-repeat: no-repeat;
}

.five {
  background-image: url("../media/Split.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Lexend;
  color: white;
  font-size: 1.5rem;
  pointer-events: none;
}

.subbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 40%;
  background-color: black;
}

#title {
  font-family: Lexend;
  color: #9142ea;
  font-size: 1.5rem;
}

#desc {
  font-family: Lexend;
  color: white;
  font-size: 0.8rem;
  width: 90%;
  text-align: center;
}

.upper {
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
}

.lower {
  height: 300px;
}

.lower img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .box {
    width: 250px;
  }

  .subbox {
    width: 200px;
  }

  .lower {
    height: 200px;
  }

  .map {
    height: 75px;
  }

  .map-overlay {
    font-size: 1rem;
  }

  #title {
    font-size: 1rem;
  }

  #desc {
    font-size: 0.6rem;
  }

  .container-content h1 {
    font-size: 3rem;
  }
}
