@font-face {
  font-family: "Redemption";
  src: url(./Hapna-Slab-Serif-DemiBold.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Redemption_Bold";
  src: url(./Chinese-Rocks.ttf);
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: var(--body-font);
  background: black;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
}

div {
  display: flex;
}
* {
  outline: none;

  box-sizing: inherit;
}
.video-bg {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.video-bg video {
  width: 100%;
  height: 100%;
  position: fixed;
  background-size: cover;
  background-position: top;
  object-fit: cover;
}

#content {
  width: 100vw;
  height: 100vh;

  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;

  padding: 64px 0px 0px;
}
#navbar {
  position: fixed;
  overflow: hidden;
  background-color: rgba(21 26 31 / 70%);
  box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%),
    0 1px 5px 0 rgb(0 0 0 / 12%);
  top: 0;
  left: 0;
  height: 64px;
  width: 100%;
  backdrop-filter: blur(20px);
}
#app {
  margin-top: 2vh;
  margin-bottom: 2%;
  margin-left: 20%;
  margin-right: 20%;
  height: 88%;
  background-color: rgba(21 26 31 / 70%);
  justify-content: center;
  display: flex;
  overflow: hidden;
  border-radius: 4px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 15px;
  font-weight: 500;
  z-index: 0;
}


#header {
  position: absolute;
  height: 8%;
  width: 100%;
  display: flex;
  flex-grow: 1;
  overflow: hidden;
}

.slide-up {
  animation: invisible 2s ease-in-out, 0.5s 2s slide-up ease-in-out;

  color: white;

  position: absolute;
  top: 40%;
 
  display: flex;
  width: 100%;
  backdrop-filter: blur(20px);
}

.slide-up p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  font-weight: bold;
}
@keyframes invisible {
  0% {
    opacity: 0%;
  }

  100% {
    opacity: 0%;
  }
}
@keyframes slide-up {
  0% {
    opacity: 0%;
    transform: translateY(20px);
  }

  100% {
    opacity: 100%;
    transform: translateY(0px);
  }
}

#logo {
  margin-left: 16px;
  margin-top: 5px;
  margin-bottom: 5px;
  align-items: center;
  height: 54px;
  width: 100px;
  z-index: 1;
}
#navs {
  position: absolute;
  height: 64px;
  top: 0;
  left: 35%;
  width: 30%;
  display: flex;
}
.tab {
  display: flex;

  text-align: center;
  margin: auto;
  font-family: Redemption_Bold, serif;
  font-size: 25px;
}
.links {
  cursor: pointer;
  text-decoration: none;
  color: grey;
}
.links {
  position: relative;
  padding-right: 30px;
  display: flex;
}
p {
  font-family: Redemption, serif;
  padding: 0;
}
h1{
  font-family: Redemption, serif;
  padding: 0;
}
h2{
  font-family: Redemption_Bold, serif;
  padding: 0;
}
.tab a:hover {
  color: #ca0000;
  transition: ease-in .2s;
}

.cross {
  width: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-origin: content-box;
  background-image: url(./Cross.png);
}

.cross {
  opacity: 0;
  margin-right: 5px;
  background-position: 50%
}
.links:hover .cross {
  opacity: 1;
  animation: background-size .2s ease;

}
@keyframes background-size{
  0% {background-size: 0%;}
  100%{background-size: 100%;}
}

.container{
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Redemtion, serif;
  animation: invisible 2s ease-in-out, 0.5s 2s slide-up ease-in-out;
  
}
.container h1{
  color: white;
  font-weight: bold;
  font-size: 50px;
  transform: translate(0, -200%);
}

.tab a:focus{
  color: #ca0000;
}

.tab a:focus .cross{
  opacity: 1;
}

