

@media screen and (max-width: 800px) {
#warning-pc { 
  display:block !important; 
  position: fixed;
  top:0;
  left:0;
  color: red;
  text-align: center;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  text-align: center;
  z-index:99;
  background-color:#333;
}
body, html {
  margin:0 !important;
  height:100% !important;
  overflow:hidden !important;
}
}


@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200..800&display=swap");

#warning-pc { display:none; }

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family:Changa;
    background-color: #10001D;
    display: grid;
    place-items: center;
}

#landing {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#scroll-down {
    position: absolute;
    bottom: 20px;
}

#scroll-down a img {
    width: 100px;
    height: auto;
}

#details {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

#details h1 {
    color: #FFF;
    font-size: 6rem;
    text-shadow: 2px 2px 6px #333;
    animation: color-changer 8s infinite;
    transition: color-changer ease-in-out;
    margin: 0;
}

@keyframes color-changer {
    33% {
      color: #EE0BF5;
    }
    /* #EE0BF5 cctv*/
    66% {
      color: #00CCFF;
    }
    /* #00CCFF marine */
    100% {
      color: #FFF;
    }
    /* #66F50B radio */
  }
  
  @-webkit-keyframes color-changer {
    33% {
      color: #EE0BF5;
    }
    /* #EE0BF5 cctv*/
    66% {
      color: #00CCFF;
    }
    /* #00CCFF marine */
    100% {
      color: #FFF;
    }
    /* #66F50B radio */
  }
  
#details p {
    font-size: 1.2em;
    text-align: center;
    max-width: 800px;
}

#scroll-up {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

#scroll-up a img {
    width: 50px;
    height: auto;
}

.frontpage-image-container {
    position: absolute;
    top: 20px;
    width: 70vw;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.frontpage-image {
    margin-top:50px;
    width: 100%;
    height: 100%;
    max-height: 90vh;
    object-fit: cover;
}


#permission-message {
  display: none;
  position: absolute;
  top:0;
  left:0;
  color: red;
  text-align: center; margin-top: 20px;
  width: 100%;
  height: 100%;
  justify-content: center;
  text-align: center;
  z-index:99;
  background-color:#333;
}

#frontpage-image {
  
  cursor: url('/media/target-scope.svg') 12 12, pointer !important;
}