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

body {
  background-color: #000;
  margin: 0;
  padding: 0;
  width: 100vw;
}

/*my pretty nav thing i made*/
section#navigation {
  align-items: center;
  border-bottom: 1px solid #ffffff27;
  display: flex;
  flex-direction: row;
  gap: 12px;
  height: 54px;
  transition: height 0.25s ease-in-out;
  width: 100vw;
  z-index: 9;
}
section#navigation:hover {
  height: 72px;
  opacity: 1;
}
button#nav-control {
  background-color: transparent;
  border: 1px solid #ffffff27;
  border-radius: 15px;
  color: #fff;
  height: 36px;
  margin-left: 12px;
  width: 54px;
  text-align: center;
  transition:
    background 0.25s ease-in,
    color 0.25s ease-in;
  z-index: 2;
}
button#nav-control:hover {
  background-color: #fff;
  color: #000;
  cursor: pointer;
}

nav {
  opacity: 0;
  transform: translateX(-200%);
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  z-index: 10;
}
nav.open {
  opacity: 1;
  transform: translateX(0);
}
nav > ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  list-style-type: none;
  gap: 12px;
  width: 90%;
}
ul#navigation-ul > li {
  border: 1px solid #ffffff27;
  border-radius: 15px;
  color: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  padding: 12px;
  text-align: center;
  transition:
    background 0.25s ease-in,
    color 0.25s ease-in;
  width: 104px;
  z-index: 11;
}
ul#navigation-ul > li:hover {
  background-color: #fff;
  color: #000;
}
div.vertical-separator {
  background-color: #ffffff27;
  height: 75%;
  width: 1px;
}

/*actual styling*/

main > section#header {
  background-color: #000000;
  height: 600px;
  width: 100vw;
}
main > section#header > header {
  background-position: center;
  background-image: url("/image");
  background-size: cover;
  height: 95%;
  position: relative;
  width: 100%;
}
main > section#header > header > h1 {
  bottom: 74px;
  font-family: monospace;
  font-optical-sizing: auto;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 800;
  left: 54px;
  letter-spacing: 12px;
  position: absolute;
}
main > section#header > header > sub {
  bottom: 50px;
  font-family: monospace;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  left: 54px;
  position: absolute;
}

main > section#main {
  display: flex;
  flex-direction: row;
  gap: 45px;
  padding-bottom: 12px;
  padding-left: 45px;
  padding-right: 45px;
}
main > section#main > div {
  flex: 1;
}
main > section#main > div > header > h1 {
  font-family: "Lucida Grande";
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
main > section#main > div > p {
  font-family: "Lucida Grande", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  max-width: 60ch;
}

main > section#main > div > p > a,
main > section#main > div > p > i {
  font-family: "Lucida Grande", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
