@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200&family=Rubik:wght@300&display=swap');
body {
  /*background: url('/static/background.gif') no-repeat center;*/
  background-size: cover;
    overflow: hidden;
  font-family: 'Poppins', sans-serif;
  animation: playGif 3.02s 1 forwards;
    background-color: #000;
}

@keyframes playGif {
  0% {
    background: url('/static/background.gif') no-repeat center;
    background-size: cover;
  }

  95% {
      background: url('/static/background.gif') no-repeat center;
      background-size: cover;
  }
  100% {
    background-size: cover;
    animation: loopVideo 10s infinite;
      background-color: #000;

  }

}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/*@keyframes loopVideo {*/
/*  0% {*/
/*    background: url('/static/background2.mp4') no-repeat center;*/
/*    background-size: cover;*/
/*  }*/
/*  100% {*/
/*    background: url('/static/background2.mp4') no-repeat center;*/
/*    background-size: cover;*/
/*        background-color: #000;*/

/*  }*/
/*}*/


@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in-text {
    opacity: 0;
    color: #fff;
    animation: fade-in 1.1s ease-in-out forwards;
    animation-delay: 0.6s;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;

}


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.container h1 {
    opacity: 0;
    animation: fade-in 1.1s ease-in-out forwards;
    animation-delay: 0.3;
    font-size: 36px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}



.container button {
    margin-top: 30px;
    padding: 12px 24px;
    background-color: #ffd700;
    color: #000000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.container button:hover {
    background-color: #ffc400;
}

.container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
