@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

body{
    background-color: black;
}

.main {
  background-image: url(assets/images/bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: max(1000px, 100vw);
  height: 70vh;
  position: relative;
}

.main .box {
  height: 70vh;
  width: 100%;
  opacity: 0.74;
  position: absolute;
  top: 0;
  background-color: black;
}

nav {
  max-width: 80vw;
  justify-content: space-between;
  margin: auto;
  display: flex;
  align-items: center;
  height: 62px;
}

nav img {
  color: red;
  width: 114px;
  position: relative;
  z-index: 1;
}

nav button {
  position: relative;
  z-index: 1;
  height: 2vw;
  justify-content: center;
}

.hero {
  font-family: "Martel Sans", sans-serif;
  font-weight: bolder;
  height: calc(100% - 62px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  position: relative;
  gap: 23px;
  padding: 0 23px;
}

.hero > :nth-child(1) {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 50px;
  z-index: 1;
  text-align: center;
}

.hero > :nth-child(2) {
  font-weight: 500;
  font-size: 45;
  z-index: 1;
  text-align: center;
}

.hero > :nth-child(3) {
  font-weight: 400;
  font-size: 40;
  z-index: 1;
  text-align: center;
}


.separation{
    background-color: rgba(44, 40, 40, 0.847);
    height: 2px;
    
}

.btn{
  padding: 3px 8px;
  font-weight: bold;
  background-color: white;
  

}

.btn-red-sn{
  background-color: red;
  color: white;


}

.btn-red{
      background-color: red;
      color: white;
      padding: 12px;
      border-radius: 15px;
}
