*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
html,body {
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #0c0c0c;
  font-family: monument;
  text-transform: uppercase;
}
#main{
  height: 90%;
  width: 100%;
  
}

#nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: 100%;
  padding: 2vw;
}
#nav h2{
  font-size: 25px;
  font-weight: 400; 

}
#nav-right{
  display: flex;
  gap: 40px;
}
#nav-right h2{
  font-size: 20px;
  font-weight: 400;
  
}
#main h1{
  position: relative;
  z-index: 9;
  font-size: 100px;
  line-height: 110px;
  margin-left: 10%;
  margin-right: 10%;
  opacity: 0.9;
}
#main h1:nth-child(1){
  margin-left: 9%;
  margin-top: 120px;
  color: #ed1c24;
}
#main h1:nth-child(2){
  margin-left:22%;
  margin-right: 30%;
  text-align: center;
  background-color: #ed1c24;
  color: #fff;
}
#main h1:nth-child(3){
  text-align: end;
  color: #ed1c24;
}
#main img{
  height: 90%;
  width: 100%;
  top: 10%;
  position: absolute;
}