@font-face {
  font-family: sequence;
  src: url("fonts/Poppins-Regular.ttf");
}


html{
  font-family: sequence;
  background-color: rgb(61, 61, 61);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  cursor: default;
}

a, a:hover, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}


#header {
  width: min-content;
    height: min-content;
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  text-align: center;
}

#headerLogo {
  object-fit: contain;
  width: 300px;
  height: 300px;
}

#headerText {
  margin-top: -30px;
  color:#fff;
}

#bodyLinks {
  position: fixed;
  width: fit-content;
  color: #fff;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  align-content: center;
  font-size: larger;
  background-color: rgba(30, 30, 30, 0.5);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  -moz-backdrop-filter: blur(8px);

  padding: 20px;
  border-radius: 2em;
}

.bodyLinkItem {
  color: #fff;
  float: left;
  margin-left: 10px;
  margin-right: 10px;
}

.bodyLinkItem img {
  max-width: 50px;
}

#backgroundAni {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#youtubeButton img {
  max-width: 60px;
}

@media screen and (orientation: portrait) {

  #headerLogo {
    object-fit: contain;
    width: 500px;
    height: 500px;
  }

  #headerText {
    font-size: 5em;
  }

  #bodyLinks {
    padding: 4vw;
    display: flex;
  }

  .bodyLinkItem {
    display: flexbox;
    margin-left: 20px;
    margin-right: 20px;
  }
  .bodyLinkItem img {
    max-width: 12vw;
  }

  #youtubeButton img {
    max-width: 15vw;
  }  

}
