@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");

@media screen and (min-width: 1200px) {
  body h1 {
    font-size: 65px;
  }
  body .home1 {
    font-size: 25px;
  }

  body .content {
    width: 105vh;
  }
  body .totop {
    font-size: 25px;
  }
  body .back_button {
    font-size: 25px;
  }
  body #desc {
    width: 50%;
  }
  body .content video {
    width: 140%;
    height: 100%;
    object-fit: cover;
  }
}

body {
  font-family: "Poppins";
  margin: 0;
  padding: 0;
  background-color: #000000;
  animation: fadeInAnimation ease 1.5s;
  animation-iteration-count: 1;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    transform: translateY(1%);
  }

  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

/* Scrollbar customize */
body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: gray;
  outline: 1px solid slategrey;
  border-radius: 50px;
}
/* --- Scrollbar customize */
h1,
h2 {
  padding-top: 5%;
  text-align: center;
  color: azure;
}
#desc {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding-bottom: 5%;
  color: azure;
  text-align: center;
}
#container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
}

.content a {
  display: flex;
  padding: 0;
  margin: 0;
}
.content a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header and text customize */
.home1 {
  /* background-image: url(../gfx/home1.png);width: 272px; height: 78px;background-repeat: no-repeat; */

  font-size: 65px;
  text-decoration: none;
  color: azure;
}
.back_button {
  /* background-image: url(../gfx/info1.png) ;width: 272px; height: 78px;background-repeat: no-repeat; */

  font-size: 65px;
  text-decoration: none;
  color: azure;
}
.totop {
  /* background-image: url(../gfx/contact1.png);width: 272px; height: 78px; */

  font-size: 65px;
  text-decoration: none;
  color: azure;
}
#header {
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 150;
  /* background-color: #EAEAEA; */
  /* height: 28px; */
}

/* .totop {
  position: fixed;
  top:0;
  right: 50px;
  transition: 1s all;
  z-index: 999;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 65px;
  text-decoration: none;
  color: azure;
  transform: translateX(40px);
}
.back_button{
   position: fixed;
  top:0;
  left: 50px;
  transition: 1s all;
  z-index: 999;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 65px;
  text-decoration: none;
  color: azure;
  transform: translateX(-40px);
} */

/* --- Header and text customize */
