img.statue {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 35%;
}

@media screen and (max-width: 600px) {
  img.statue {
    width: 80%;
    height: auto;
  }
}

body {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("https://raw.githubusercontent.com/kuuurt13/static-hosting/main/vaporware.jpg")
    no-repeat center center;
  background-size: cover;
  z-index: 0;
}

body > #app {
  margin: 0 auto;
}

body > canvas {
  opacity: 0.75;
}

.container {
  display: flex;
}

.modal-about,
.modal-contact,
.modal-more {
  position: absolute;
  padding: 15px 20px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0);
  z-index: 20;
  min-width: 150px;
  width: 180px;
  text-align: center;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-about {
  left: 20%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.modal-contact {
  left: 75%;
  top: 18%;
  transform: translate(-50%, -50%);
}

.modal-more {
  left: 80%;
  top: 70%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 600px) {
  .modal-about,
  .modal-contact,
  .modal-more {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
    top: auto;
  }

  .modal-about { top: 80%; }
  .modal-contact { top: 85%; }
  .modal-more { top: 90%; }
}

.btn {
  color: #000;
  font-family: "Silkscreen", sans-serif;
  font-size: 2vw;
  font-weight: 400;
  font-style: normal;
  background: white;
  padding: 0.3rem 3.4rem;
  border: 3px solid black;
  margin: 10px 0;
  transition: all 0.2s;
  cursor: url('images/heart-cursor.png'), auto;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.btn:last-child {
  margin: 0;
}

.btn:hover {
  box-shadow: 0.4rem 0.4rem 0 black;
  transform: translate(-0.4rem, -0.4rem);
}

.btn:active {
  box-shadow: 0 0 0 black;
  transform: translate(0, 0);
}

.options {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 600px) {
  .options {
    width: 90%;
    display: flex;
    flex-direction: column;
  }

  .options a {
    display: block;
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 0px;
  border: #000000, medium;
  max-width: 500px;
  width: 90%;
  text-align: left;
  position: relative;
  font-family: "Silkscreen", sans-serif;
}

.close-btn {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: url('images/heart-cursor.png'), auto;
}
