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

}

.container {
  margin: auto 5%;
}

body {
  height: 100vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("./assets/pexels-maxyne-barcel-10402282\ 1.png");
}

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

nav {
  display: flex;
  flex-direction: row;
  height: 20vh;
  justify-content: space-between;
}

.logo {
  margin-top: 50px;
  width: 100px;
}


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

.list-item {
  margin: 50px 40px;
  color: yellow;
  cursor: pointer;

}


.navbar .button-small {
  color: white;
  background-color: #FF505F;
  border: none;
  font-size: large;
  margin: 35px 0;
  padding: 10px 35px;
  cursor: pointer;

}

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

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80vh;

  text-align: center;
  padding: 50px;
}

.hero-heading {
  font-size: 7em;
  color: yellow;
  font-weight: bold;
  text-align: center;
  margin-top: 1em;
  line-height: 1;
}

.button-large {
  color: white;
  background-color: #FF505F;
  border: none;
  margin: 35px 0;
  padding: 20px 50px;
  font-size: x-large;
  cursor: pointer;
}

.bottom img {

  position: relative;
  left: 35vw;
  cursor: pointer;
  /* margin-bottom: 100px; */
}