/* CSS Document */



.hotelContent {
	background-position: center;
  background-repeat: no-repeat;
	background-color: var(--DarkBlue);
  background-size: contain;
	z-index: 1;
}
.imageHolder {
	z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imageHolder>img {
  width: 70%;
  margin-top: 50px;
  margin-bottom: 50px;
  
}



/*
#cloud1 {
  position: relative;
  display: block;
  width: 120px;
  height: 60px;
  margin-top: -1126.46px;
  margin-left: 200px;
  border-radius: 50%;
  background: white;
  opacity: 0.95;
  filter: blur(10px);
  z-index: 12;
  overflow: hidden;
}
#cloud2 {
  position: relative;
  display: block;
  width: 90px;
  height: 80px;
  margin-top: -5px;
  margin-left: 260px;
  border-radius: 50%;
  background: white;
  opacity: 0.75;
  filter: blur(20px);
  z-index: 13;
  overflow: hidden;
}
#cloud3 {
  position: relative;
  display: block;
  width: 130px;
  height: 20px;
  margin-top: -10px;
  margin-left: 180px;
  border-radius: 50%;
  background: grey;
  opacity: 0.55;
  filter: blur(20px);
  z-index: 54;
  overflow: hidden;
}
#cloud4 {
  position: relative;
  display: block;
  width: 90px;
  height: 40px;
  margin-top: -50px;
  margin-left: 220px;
  border-radius: 50%;
  background: white;
  opacity: 0.65;
  filter: blur(20px);
  z-index: 15;
  overflow: hidden;

}
#cloud5 {
  position: relative;
  display: block;
  width: 110px;
  height: 100px;
  margin-top: -70px;
  margin-left: 150px;
  border-radius: 50%;
  background: white;
  opacity: 0.85;
  filter: blur(10px);
  z-index: 16;
  overflow: hidden;

}
#moonAbove {
  position: relative;
  width: 155px;
  height: 150px;
  margin-top: -70px;
  margin-left: 420px;
  background: white;
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.9;
  z-index: 21;
}
#moonBelow {
  position: relative;
  width: 150px;
  height: 150px;
  margin-top: -150px;
  margin-left: 420px;
  background: white;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0.9;
  z-index: 19;
}

*/


#flashingCutout1 {
  grid-area: hotelContent;
  z-index: 2;
  width: 30%;
  height: 10%;
  border-radius: 50%;
  transform: translate(170%, 560%) rotate(-20deg);
  background-color: yellow;
  filter: blur(8px);
  
  animation: windowFlash 10s infinite;
}

/* Text Box ------------------------------------------------------------------ */
#text {
  border: 1px solid rgba(0,123,0,0.5);
  padding: 10px 20px;
}

#text h1, #text p {
  color: white;
}

#text h1{
  font-weight: 700;
}

#text p {
  font-size: 21px;
  font-weight: 300i;
}

.glowingText {
  color: yellow;
  filter: blur(1px);
  animation: windowFlash 10s infinite;
}

#cloudText {
  width: 40px;
  height: 20px;
  margin-top: -47px;
  margin-left: 254px;
  display: block;
  position: relative;
}
#cloudText p {
  font-size: 21px;
  color: white;
  text-shadow: 20px 20px 40px #fff,
               -20px 20px 40px #fff,
               -20px -20px 40px #fff,
               20px -20px 40px #fff; 
}


/* Background animated Bricks ------------------------------------------------ */

.brickContainer {
  grid-area: hotelContent;
  z-index: 50;
}
.brick1 {
  background: var(--Green);
  width: 4%;
  height: 2%;
  margin-top: 5%;
  margin-left: 40%;
  animation: brickFlash 2.5s infinite;
}

.brick2 {
  background: var(--Yellow);
  width: 4%;
  height: 2%;
  margin-top: 8%;
  margin-left: 42%;
  animation: brickFlash 1s infinite;
}
.brick3 {
  background: var(--LightBlue);
  width: 4%;
  height: 2%;
  margin-top: 9%;
  margin-left: 35%;
  animation: brickFlash 2s infinite;
}

/* Animations ----------------------------------------------------- */
  /* Windows ----------------------------------------------------- */
  @keyframes windowFlash {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 0.5;
    }
    70% {
      opacity: 0.5;
    }
    100% {
      opacity: 0;
    }
  }

  /* Background Bricks ----------------------------------------------------- */
  @keyframes brickFlash {
    0% {
      opacity: 0.7;
    }
    50% {
      opacity: 0.2;
    }
    100% {
      opacity: 0.7;
    }
  }

/* Temp Cloud Movement ----------------------------------------------------- */

@keyframes movingCloud1 {
  100% {
    transform: translate(300px,0px);
  }
}