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

body {
  background-image: linear-gradient(
      rgba(3, 27, 58, 0.65),
      rgba(3, 27, 58, 0.65)
    ),
    url("../assets/pexels-maxyne-barcel-10402282 1.png");
  background-size: cover;
  height: 100vh;
  margin: 5% 5%;
}

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

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 8rem;
}

.navbar img {
  width: 150px;
}

.list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.list-item {
  list-style: none;
  margin: 0 1em;
  font-size: 1em;
  color: #ffc233;
}

.button-small {
  background-color: #ff505f;
  border: none;
  color: #ffffff;
  padding: 10px 35px;
  font-size: 1em;
}

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

.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 8rem;
  position: relative;
  margin-top: 100px;
}

.hero-heading {
  font-size: 4.8em;
  color: #ffc233;
  font-family: "Dela Gothic One", cursive;
  text-align: center;
  line-height: 1.2em;
  margin-bottom: 50px;
}

.button-large {
  background-color: #ff505f;
  border: none;
  color: #ffffff;
  padding: 15px 40px;
  font-size: 1.2em;
  font-weight: 500;
}

.bottom {
  position: relative;
  top: 50px;
  left: 50%;
}

.bottom img {
  width: 150px;
}
