@import url(https://fonts.googleapis.com/css?family=Fjalla+One);
html {
  height: 100%;
}

#popUp {
  display: none;   
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #405166 0%, #656f6f 100%); /* Semi-transparent background */
  display: flex; /* Center pop-up content vertically */
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensure overlay is above other elements */
}

.closeBtn {
  cursor: pointer;
  font-size: 24px;  /* Increase font size for better touch target */
  position: absolute;
  bottom: 20%;
  right: 5%;
  padding: 15px 25px;  /* Increase padding for better touch target */
  border: none;
  background-color: #333;
  color: white;
  z-index: 10;
  /* Add other styles for the close button */
}





body {
  font-family: "Verdana", sans-serif;
 
}



.container {
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: block;
  position: absolute;
  max-width: 85%;
}

.buttonanimation {
  float: left;
  position: relative;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
  color: #e55643;
  text-transform: uppercase;
  cursor: pointer;
}
.buttonanimation span {
  transform: skew(-10deg);
  display: block;
  float: left;
  text-shadow: #533d4a 1px 1px, #533d4a 2px 2px, #533d4a 3px 3px, #533d4a 4px 4px;
}

h7 {
  color: #fff;
  text-transform: uppercase;
  font-size:6vw;
  margin: 0;
  line-height: 7vw;
  letter-spacing: 2px;
}

.titleanimation {
  transform: translateX(-50%) rotate(-10deg);
  display: block;
  float: left;
  left: 50%;
  position: relative;
  text-align: center;
  display: flex; justify-content: center;
}
.titleanimation span {
  transform: skew(-10deg);
  display: block;
  float: left;
  text-shadow: #533d4a 1px 1px, #533d4a 2px 2px, #533d4a 3px 3px, #533d4a 4px 4px, #533d4a 5px 5px, #533d4a 6px 6px;
  min-width: 10px;
  min-height: 10px;
  position: relative;
  text-align: center;
  justify-content: center;
}

.titleanimation:nth-child(1) {
  color: #5c88ed;
}
.titleanimation:nth-child(2) {
  color: #5c88ed;
}
.titleanimation:nth-child(3) {
  margin-bottom: 50px; /* Add spacing before the second-last span */
  color: #ff6060;
}
.titleanimation:nth-child(4) {
  margin-bottom: 50px; /* Add spacing before the second-last span */
  color: #ffffff;
}

.delayed-appear {
  animation: delayed-appear 2s ease-in-out forwards;
  opacity: 0;
}

@keyframes delayed-appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

