body {
  font-family: Helvetica;
  margin: 0;
  height: 100vh;
  position: relative;
}

.dropbtn {
  background-color: #ffffff5c;
  color: #333333;
  padding: 5px;
  margin-top: 20px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.dropbtn:focus {
  outline: none;
}

.dropdown {
  position: absolute;
  right: 15%;
  display: block;
  float: left;
  z-index: 1;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  border-radius: 5px;
  box-shadow: 0px 10px 20px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
  top: 50px;
  right: 0px;
}

.dropdown-content a {
  color: #333333;
  font-size: 14px;
  padding: 6px 24px 6px 20px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:first-of-type {
  padding-top: 12px;
}

.dropdown-content a:last-of-type {
  padding-bottom: 12px;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
}

.bg-image {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  height: calc(100vh - 120px);
  width: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.img-container {
  width: 60%;
  height: auto;
}

.img-container img {
  width: 100%;
  height: 100%;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #333;
  display: inline-block;
  margin: 3px;
}

@media screen and (max-width: 998px) {
  .dropdown {
    right: 10%;
  }
  .image-container {
    align-items: unset;
    justify-content: unset;
  }
  .img-container {
    margin: 10px auto 0;
    height: auto;
    width: 95%;
  }
}
