p {
    font-family: 'InterTight', sans-serif;
    letter-spacing: 1px;
    font-size: 25px;
    color: #ffffff;
    padding: 20px;    
}

/* .header {
    position: relative;
    text-align: center;
    background: linear-gradient(60deg, #C59A63 0%, #B39B84 100%);
    color: white;
} */

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(60deg, #C59A63 0%, #B39B84 100%);
    opacity: 0.5;
    /* z-index: 1; */
}
.header {
    position: relative;
    background: url('bgTexture.webp') center/cover no-repeat;
    color: white;
    z-index: 0;
}

.logo {
    width: 40%;
    fill: white;
    padding-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

.inner-header {
    height: 60vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.flex {
    /*Flexbox for containers*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
    height: 35vh;
}

.splashcontent {
    position: relative;
    height: 35vh;
    text-align: center;
    background-color: #345574;
}
.enter-area{
   visibility: hidden; 
   height: 50px;
}


.splash-tag {
    font-size: 50px;
}


/* Animation */

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }

    .splashcontent {
        height: 35vh;
    }

    .splash-tag {
        font-size: 30px;
    }

    .logo {
        width: 77%;
    }

}



@media (max-height: 600px) {
    .inner-header {
        height: 40vh;
    }

    .logo {
        width: 20%;
    }
}


/* From Uiverse.io by virus231 */
/* From Uiverse.io by virus231 */ 
.enter-button {
  background: linear-gradient(140.14deg, #B58558 15.05%, #C99569 114.99%)
      padding-box,
    linear-gradient(142.51deg, #B58558 8.65%, #C99569 88.82%) border-box;
  border-radius: 7px;
  border: 2px solid transparent;

  text-shadow: 1px 1px 1px #00000040;
  box-shadow: 8px 8px 20px 0px #45090059;

  padding: 10px 40px;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  font-size: 18px;
  /* font-weight: 500; */
}

.button:hover {
  box-shadow: none;
  opacity: 80%;
}

.enter-button:hover {
    box-shadow: none;
    opacity: 80%;
}