

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --text-color: #ff0238;

}


@font-face {
  font-family: 'Eight One';
  src: url('Eight_One.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}


body {
  font-family: 'Eight One';
  color: #ffffff;
  background-color: #000000;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 2px;
}

h1 {
  color: var(--text-color);
  font-size: 50px;
  margin-bottom: 20px;
}

h2 {
  color: var(--text-color);
}

h3 {
  margin-bottom: 10px;
}

ul {
  list-style-type: none;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

p {
  margin: 20px 0;
}

nav {
  width: 30%;
}

nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

nav ul li {
  color: var(--text-color);
  cursor: pointer;
}


img{
  padding-top: 400px;
  padding-bottom: 100px;
  width: 500px;

}

video {
  width: 100%;
  height: auto;
}

.logo{
  height: auto;

}

.mobile{
  display:none;
  margin-left: 20px;
  margin-right:20px;
}



@media (max-width: 400px) {
  .logo {
    width: 300px;
  }

  .mobile{
    display:grid;
  }

  .container {
    max-width: 200px!important;
    height: 100px!important;
    padding-top:10px!important;
  }


  .about{
    display:none;
  }

  .contact{
    display:none;
  }

  .space{
    display:none;
  }
  h1 {
    color: var(--text-color);
    font-size: 30px;
    margin-bottom: 10px;
  }

  img{
    padding-top: 10px;
    padding-bottom: 10px;
    width: 300px;
  
  }

}


@media (min-width: 400px) and (max-width: 800px) {
  .logo {
    width: 400px;
  }

  .mobile{
    display:grid;
  }

  .container {
    max-width: 200px!important;
    height: 100px!important;
    padding-top:10px!important;
  }


  .about{
    display:none;
  }

  .contact{
    display:none;
  }

  .space{
    display:none;
  }
  h1 {
    color: var(--text-color);
    font-size: 30px;
    margin-bottom: 10px;
  }

  img{
    padding-top: 10px;
    padding-bottom: 10px;
    width: 300px;
  
  }

}


.space{
  padding-left:40px;
  padding-right:40px;
}

.video-container {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
}


.container {
  max-width: 600px;
  margin: auto;
  height: 300px;
  display: flex;
  padding-top:300px;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.hidden{
  display:none;
}

.wb-body {
  background: #111;
  padding: 20px;
}


.cursor {
  font-weight: 700;
  animation: 1s blink step-end infinite;
}

@keyframes blink {
  from,
  to {
    color: transparent;
  }

  50% {
    color: var(--text-color);
  }
}
