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

body {
  background: url(./assets/pexels-maxyne-barcel-10402282\ 1.png), #0049ff69;
  background-position: center;
  background-size: cover;
  background-blend-mode: saturation;
  height: 100vh;
  margin: 0 5%;
}

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

nav {
  height: 20vh;
  width: 100%;
  display: flex;
  flex-direction: row;
}




nav img {
  margin-top: 50px;
  flex: 1;
  width: 150px;
}

nav .list {
  flex: 2;
  display: flex;
  justify-content:space-evenly;
  align-items: center;
  list-style: none;
}

.navbar .list-item {
  color: #ffc233;
   margin: 50px auto auto 100px; 
  font-size: 18px;
  text-decoration: none;
} 

.navbar .button-small {
  color: #fff;
  margin: 50px auto auto 200px;
  padding: 5px 40px;
  font-size: 20px;
  flex: 4;
  border: none; 
  border-color: #ff505f;
  background-color: #ff505f;
}

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

.hero {
  display: flex;
  flex-direction: column;
}

.hero h1 {
  margin: auto;
  height: 380px;
  width: 80%;
  font-size: 90px;
  font-weight: 500;
  font-family: "Dela Gothic One";
  text-align: center;
  color: #ffc233;
}

.hero .button-large {
  
  color: #fff;
  margin: 10px auto;
  padding: 15px 40px;
  font-size: 20px;
  flex: 1;
  border: none;
  background-color: #ff505f;
}

.hero .bottom {
  position: absolute;
  bottom: 0;
  right: 20px;
  justify-content: flex-end;
}