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

body {
  background: linear-gradient(rgba(5, 0, 46, 0.7),rgba(0, 0, 0, 0.9)), url(./assets/pexels-maxyne-barcel-10402282\ 1.png);
  background-size: cover;
  height: 100vh;
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 75px;
}

.navbar div:first-child img {
  width: 100px;
}

.list {
  list-style: none;
  display: flex;
  color: #F4BE2C;
}

.list-item {
  font-size: large;
  font-weight: bold;
  margin: 0px 20px;
  cursor: pointer;
  position: relative;
}

.navbar div:last-child button {
  margin-left: 10px;
  font-size: large;
  color: white;
  padding: 5px 25px;
  background-color: #EF5354;
  border: none;
  border-radius: 5px;
}

.navbar div:last-child button:hover {
  cursor: pointer;
}

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

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.hero-heading {
  color: #F4BE2C;
  font-size: 75px;
  font-weight: bold;
  text-align: center;
}

.button-large {
  margin-top: 30px;
  font-size: x-large;
  color: white;
  padding: 5px 25px;
  background-color: #EF5354;
  border: none;
  border-radius: 5px;
}

.button-large {
  cursor: pointer;
}

.bottom div img {
  width: 150px;
  position: absolute;
  right: 50px;
  bottom: 10px;
}