body, html {
  margin: 0;
  padding: 0;
  height: 200vh; /* Double the height to allow scrolling */
  overflow-x: hidden;
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
}

.screen1 {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: black;
  z-index: 2;
  transition: transform 1s ease;
  box-shadow: 0px 10px 35px #f1094760;
}

.screen1 .border {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
  border: 15px solid white;
  box-sizing: border-box;
}

.screen1 .central-image {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 570px;
  height: 270px;
  transform: translate(-50%, -50%);
}

.screen1 .name {
  position: absolute;
  top: 50px;
  left: 50px;
  color: white;
}

.screen2 {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.screen2 .border {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
  border: 15px solid black;
  box-sizing: border-box;
}

.screen2 .central-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  text-shadow: 0px 10px 15px #F10946;
}

.screen1 .contact-bottom-left {
  position: absolute;
  bottom: 40px;
  left: 50px;
  color: white;
}

.screen1 .contact-top-right {
  position: absolute;
  top: 50px;
  right: 50px;
  color: rgb(255, 255, 255);
}

body.scrolled .screen1 {
  transform: translateY(-100vh); /* Move the screen1 up */
}

.bubble {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: white;
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index:100;
}

p#trigger-text, p#trigger-text2 {
  cursor: pointer;
}

p#trigger-text:hover,p#trigger-text2:hover {
  text-decoration: underline;
}
