@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%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.closeBtn {
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  bottom: 20%;
  right: 5%;
  padding: 15px 25px;
  border: none;
  background-color: #333;
  color: white;
  z-index: 10;
}

body {
  font-family: "Verdana", sans-serif;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 85%;
}

h7 {
  color: #fff;
  text-transform: uppercase;
  font-size: 6vw;
  margin: 0;
  line-height: 7vw;
  letter-spacing: 2px;
}

.titleanimation {
  display: block;
  position: relative;
  text-align: center;
  margin: 10px 0;
}

.titleanimation:nth-child(1) {
  color: #5c88ed;
}

.titleanimation:nth-child(2) {
  color: #5c88ed;
}

.titleanimation:nth-child(3) {
  color: #ff6060;
}

.titleanimation:nth-child(4) {
  color: #ffffff;
}

.buttonanimation {
  color: #e55643;
  text-transform: uppercase;
  cursor: pointer;
}

.buttonanimation span {
  display: block;
  text-shadow: #533d4a 1px 1px, #533d4a 2px 2px, #533d4a 3px 3px, #533d4a 4px 4px;
}

.delayed-appear {
  animation: delayed-appear 2s ease-in-out forwards;
  opacity: 0;
}

@keyframes delayed-appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Media queries for better mobile responsiveness */
@media (max-width: 768px) {
  .closeBtn {
    font-size: 18px;
    padding: 10px 20px;
    bottom: 10%;
    right: 10%;
  }

  h7 {
    font-size: 8vw;
    line-height: 9vw;
  }

  .titleanimation {
    margin