
.body{
  font-weight: 400;
  height: 100vh;
  width: 100vw; 
  margin: 0;
  padding: 0;
  color:white;
  font-family: 'Lilita One', sans-serif;
}
.starry-background {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(#113b70, #1856a2 );
  overflow: hidden;
}

.starry-background::before {
    content: '';
    position: absolute;
    width: 500vw;
    height: 500vh;
    top: 0;
    left: 0;
    background-image: url(./Images/Background_Star.png);
    background-size: 200px 200px;
    background-color: #6767ef;
    mix-blend-mode: overlay;
    opacity: .15;
    background-repeat: repeat;
    animation: starMove 20s linear infinite;
    z-index: 1;
  
}

@keyframes starMove {
  from {
    transform: translate3d(-800px, -400px, 0);;
  }
  to {
    transform:translate3d(-400px, -1000px, 0);;
  }
}
.header-bar {
  width: 100%;
  background-color: black;
  height: fit-content;
}
.banner {      

  @media (orientation: landscape) {
    width: 100vh;
    height: 80vh;
  }
  @media (orientation: portrait) {
    width: 80vw;
    height: 60vw;
  }

  max-width: 800px;
  max-height: 600px;

  background-color: #1a2026;
  scroll-behavior: auto;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex
;
  flex-direction: column;
  align-items: center;
  align-items: center;
  border-radius: 24px;
  border: 8px black solid;
  overflow: hidden;
}
.thumbnail-container{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% 50%;
}
.logo {
  width: 70%;
  height: 70%;
  object-fit: scale-down;
  object-position: 50% 50%;
  position: relative;
  left: 15%;
  top: 15%;
}

.loader{
  top: -1;
  left: -1;
  right: -1;
  bottom: -1;
  position: absolute;
  z-index: 99;
  background-color: #1a2026;
  transition: opacity 0.3s;
  display: flex
;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  border-radius: 16px;

}

.loadingSymbol{
  animation: spin 2s linear infinite 0s;
  pointer-events: none;


}

@keyframes spin {
  from {
    transform: rotateZ(360deg);
    
  }
  to {
    transform: rotate(0);
  }
}

.container {
  width: 100%;
  height:100%;
}

.button{
  margin: auto;
    width: auto;
    padding: 10px 20px;
    height: auto;
    bottom: 10px;
    border: black 3px solid;
    border-radius: 15px;
    background-image: linear-gradient(360deg, rgb(96, 191, 75), rgb(96, 191, 75) 30%, #6ad65c 30%);
    background-size: cover;
    position: absolute;
    bottom: 20px;
    overflow: hidden;
    color: white;
    font-family: 'Lilita One', sans-serif;
    font-size: 2em;
    color: white;
    -webkit-text-stroke: 1px black;
    color: white;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.button::after{
  content: "";
  pointer-events: none;
  border-bottom: #27821f 7px solid;
  position: absolute;
  border-radius: 15px;
  top: -3px;
  bottom: -3px;
  left: 0;
  right: 0;

}
.button::before{
  content: "";
  pointer-events: none;
  border-top: #a1e2a5 8px solid;
  position: absolute;
  border-radius: 15px;
  top: -3px;
  bottom: -3px;
  left: 0;
  right: 0;

} 

.title{
  font-weight: normal;
  padding: 5px;
  padding-left: 10px;
  margin: 0;

}