* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Red Rose", cursive;
}

.container::before{
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: -2;

  background-image: url('assets/bg.png');
  /* height: 100vh; */
  /* width: 100vw; */ 
  background-position: cover;
  background-size: cover;
  /* height: 100vh; */
  opacity: 0.8;
  height: 1024px;
}

body{
  background-color: rgb(43, 43, 52);
  opacity: 0.9;
}


.container{
  margin: 5vh 3vw;
  /* height: 100vh; */
}

/* ------------------------------ */
/* ---------- NAVBAR ------------ */
/* ------------------------------ */

.navbar{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.navbar .list{
  display: flex;
  justify-content: space-between;
  list-style: none;
  width: 40vw;
}

.navbar .list .list-item{
  color: #FFC233;
}

.button-small{
  background-color: #FF505F;
  color: #ffffff;
  border: none;
  font-size: 20px;
  padding: 10px 30px;
  margin-right: 40px;
}


/* ------------------------------ */
/* ---------- HERO ------------ */
/* ------------------------------ */


.hero{
  display: flex;
  flex-direction: column;
  margin-top: 85px;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.hero-heading{
  font-family: "Dela Gothic One", sans-serif;
  font-size: 115px;
  text-align: center;
  color: #FFC233;
  line-height: 140px;  
}

.button-large{
  background-color: #FF505F;
  border: none;
  color: #ffffff;
  margin-top: 50px;
  font-size: 23px;
  padding: 20px 120px;
}

.bottom{
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  margin-top: 50px;
  margin-right: 40px;

}