@import url("https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@0,100..900;1,100..900&display=swap");

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Chivo Mono", monospace;
  margin: 0;
  padding: 0;
}

*::-webkit-scrollbar {
  display: none;
}

html {
  cursor: url("https://freight.cargo.site/t/original/i/591667f1873c9e075d94c049a99631c0e5464975b8fbadcaa5891eda1b2dff5b/Rectangle-1.png"),
    auto !important;
}

body {
  color: white;
  background-color: black;
}

a {
  color: white;
  text-decoration: none;
}

.title {
  font-size: 4em;
  font-weight: 900;
}

.heading {
  font-size: 2em;
  font-weight: 600;
}

.sub-heading {
  font-size: 1.5em;
  font-weight: 300;
}

.italic {
  font-style: italic;
}

/* Nav section */

.nav-section {
}

.nav-container {
}

.nav {
  background-color: white;
  position: fixed;
  right: 0;
  z-index: 99;
  width: 3em;
  height: 100vh;
  padding: 0;
  margin: 0;
  float: right;
}

.list {
  list-style: none;
  display: block;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 30px 0 30px 0;
  line-height: 3em;
  color: black;
}

.list a {
  text-decoration: none;
  color: black;
  text-align: center;
}

.list .btn {
  display: none;
}

.nav-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  z-index: 99;
  justify-content: flex-start;
  align-items: flex-start;
}

.list-sidebar {
  width: 100%;
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 2em;
  font-weight: 400;
  padding: 1em;
  list-style-type: none;
}

.list-sidebar a {
  text-decoration: none;
  text-align: center;
}

/* Reponsive for the nav */

@media (max-width: 900px) {
  .nav {
    background-color: transparent;
  }
  .list {
    display: none;
  }
  .btn {
    display: block;
    color: white;
  }
}

.about-section {
  width: 100vw;
  height: 100vh;
  color: white;
}

.about-info-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100vw;
  height: 50vh;
}

.about-info, .contact-info {
  width: 50%;
  height: 50vh;
  padding: 1em;
}

.contact-info i {
  margin-right: 5px;
  font-size: 0.7em;
}

.about-video-container {

}

.video-container {

}

#video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  filter: brightness(70%);
}