@font-face {
  font-family: "ROMANSEX";
  src: url("ROMANSEX.ttf");
}

body, html {
  height: 100%;
  margin: 0;
}

body {
  background-color: #9c3c3c;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-transition: background-image 1s ease-in-out;
  transition: background-image 1s ease-in-out;
  background-image: url("../images/placeholder.png");
  touch-action: manipulation;
}

input {
  outline: none;
}

button {
  color: black;
}

.sky {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  opacity: 0.5;
}

.cloud {
  position: absolute;
  background: #fff;
  background: radial-gradient(circle at 30% 30%, #fff, #f0f0f0);
  border-radius: 50%; 
  width: 120px;
  height: 60px;
  opacity: 0.9;
  animation: moveClouds 60s linear infinite;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: #fff;
  background: radial-gradient(circle at 30% 30%, #fff, #f0f0f0);
  border-radius: 50%;
}

.cloud::before {
  width: 80px;
  height: 80px;
  top: -20px;
  left: 10px;
}

.cloud::after {
  width: 100px;
  height: 100px;
  top: -30px;
  left: 50px;
}

.center-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.large {
  font-size: 8vw;
  text-shadow: 2px 2px 5px #262626;
}

.mid {
  font-size: 6vw;
  text-shadow: 2px 2px 5px #262626;
}

.roman {
  font-family: "ROMANSEX";
}

.no-margin {
  margin: 0px;
}

.main-icon {
  width: 15vw;
  display: flex;
  gap: 8px;
}

.center {
  text-align: center;
  margin: auto;
}

.button-center {
  justify-content: center;  
  align-items: center;   
}

.back-button {
  font-size: 1em;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.iframe-wrapper {
  position: relative;
  height: 70vh;
}

.iframe-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.responsive-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  margin: 0 auto;
}

.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* #background {
  position: absolute;
  width: 99.5vw;
  height: 99.5vh;
  background: linear-gradient(to top, #87ceeb, #e0f7ff);
  opacity: 0.6;
} */

#user-interface-window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
}

/* #homescreen {
  display: none;
  margin: 0;
} */

#homescreen, #pineglen-div, #msms-div, #bhs-div, #pine-glen-building-photos, #guestbook-div, #file-div {
  display: none;
  margin: 0;
}

#icon-center {
  margin: auto;
  text-align: center;
}

#bp-iframe, #guestbook-frame, #file-iframe {
  margin: auto;
  text-align: center;
  border: none;
  width: 800px;
  height: 500px;
}

#guestbook-frame {
  overflow-y: auto;
}

#site-news {
  font-size: 1.5vw;
}

@keyframes moveClouds {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(110vw);
  }
}