@font-face {
  font-family: gilroy;
  src: url(fonts/Gilroy-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: gilroy;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: #05050500;
  /* color: #fff; */
}

#page1 {
  width: 100%;
  height: 100%;
}

#page1 #nav {
  width: 100%;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#page1 #nav #nav1 {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

#page1 #nav #nav2 {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page1 #nav #nav2 img {
  width: 20%;
}

#page1 #nav #nav3 {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#page1 #nav #nav3 button {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem;
  border-radius: 2rem;
  background: transparent;
  border: transparent;
}

#page1 #nav #nav3 :nth-last-child(1) {
  color: #fff;
  background-color: #000;
}

#page1 #nav #nav3 .form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#page1 #nav #nav3 .form span {
  background: transparent;
  background: #fff;
  padding: 1rem 1.5rem;
  outline: none;
  border-radius: 2rem;
}

#page1 #nav #nav3 .form span i {
  color: #dadada;
  font-size: 1rem;
  background: transparent;
}

#page1 #nav #nav3 .form span input {
  background: transparent;
  border: none;
  outline: none;
}

#page1 #content {
  width: 100%;
  height: calc(100% - 10vh);
  background-color: #000;
}

#page1 #content h1 {
  font-size: 8rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 7rem;
  width: 70%;
  margin-left: 15%;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

#page1 #content h1:nth-child(1) {
  padding-top: 15rem;
}

#page1 #content h1:nth-child(2) {
  text-align: center;
}

#page1 #content h1:nth-child(3) {
  text-align: end;
}

#page1 #content img {
  height: 30rem;
  position: absolute;
  top: 25%;
  left: 40%;
}

#page1 #content #img1 {
  rotate: 20deg;
}

#page1 #content #img2 {
  rotate: 10deg;
}
