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

body {
  height: 100vh;
  background-image: linear-gradient(to bottom, rgba(28, 36, 61, 0.8),rgba(28, 36, 61, 0.8)), url('./assets/pexels-maxyne-barcel-10402282\ 1.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.container {
  max-width: 85rem;
  margin: 0 auto;
}
/* ------------------------------ */
/* ---------- NAVBAR ------------ */
/* ------------------------------ */
section .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20vh;
}
.navbar div img {
  width: 120px;
}
.navbar .list {
  list-style-type: none;
  color: #ffc233;
  display: flex;
}
.navbar .list .list-item {
  cursor: pointer;
}
.navbar .list .list-item:not(:last-child) {
  margin-right: 60px;
}
.navbar .button-small {
  background-color: #ff505f;
  border: none;
  color: #FFFFFF;
  padding: 9px 30px;
  font-size: 19px;
}

/* ------------------------------ */
/* ---------- HERO ------------ */
/* ------------------------------ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 80vh;
}
.hero .hero-heading {
  font-size: 4rem;
  color: #ffc233;
  font-family: "Dela Gothic One";
  max-width: 800px;
  line-height: 5rem;
}
.hero .button-large {
  background-color: #ff505f;
  border: none;
  color: #FFFFFF;
  padding: 15px 40px;
  font-size: 19px;
  margin-top: 40px;
}
.hero .bottom {
  align-self: flex-end;
  padding-top: 90px;
}
.hero .bottom img {
  width: 120px;
}