@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-image: url(background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

header {
  height: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-family: "Quicksand";
}

.dropbtn {
  color: black;
  padding: 16px;
  font-size: 16px;
  border: none;
  background-color: rgba(0,0,0,0);
  font-family: "Quicksand";
  font-weight: 700;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 5px;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: ease 0.1s;
}

.dropdown-content a:hover { 
  background-color: white;
  color: black;
  }
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {
  text-decoration: underline;
}

.hero {
  justify-content: center;
  text-align: center;
  height: 80vh;
  display: flex;
  flex-direction: column;
  font-family: "Quicksand";
}