#parallax {
  background-image: url('../Pictures/SimplyCubed_Monument.png');
}

#parallax p {
  color: #ffffff;
}

#bottom a {
  width: 100%;
  height: 100%;
  border-radius: 5vw;
}

.item {
  height: 56vw;
  width: 90vw;
  box-shadow: 1vw 1vw 3vw var(--shadow), -1vw -1vw 3vw var(--light);
  order: 2;
  margin-top: 5vw;
  border-radius: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

.item p {
  font-size: 4vw;
  margin: 3vw;
  font-weight: 100;
  height: 15vw;
}

.title {
  background-size: 90vw;
  background-position: center center;
  border-radius: 5vw;
  margin: 0vw;
  height: 36vw;
  width: 90vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title h1 {
  font-size: 5vw;
  border-radius: 2vw;
  padding: 1vw 4vw 1vw 4vw;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 0.1vw solid rgba(255, 255, 255, 0.25);
}











@media (orientation: landscape) {
  #parallax {
    width: 100vw;
    height: 25vw;
    background-size: 100vw;
  }

  .item {
    height: 38vw;
    width: 43vw;
  }

  .item p {
    font-size: 2.5vw;
    height: 12vw;
  }

  .title {
    width: 43vw;
    height: 20vw;
    margin: 0vw;
    background-size: 45vw;
  }

  .title h1 {
    font-size: 3.5vw;
    text-align: center;
    max-width: 25vw;
  }
}