body {
  margin: 0;
}

.fa,
fa-bars,
fa-2x {
  color: white;
}
.get-started {
  border-radius: 12px;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  background-color: white;
  color: black;
  cursor: pointer;
}
.get-started:hover {
  background-color: #184e51;
  color: white;
}

/* Dropdown Button */
.dropbtn {
  padding: 16px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

/* Dropdown button on hover & focus */
.dropbtn:hover {
  background-color: #184e51;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: absolute;
  display: inline-block;
  top: 5px;
  right: 5px;
}

/* Dropdown Content (Hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0px;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown mune (use JS to add this
    class to the .dropdown-content container when
    the user clicks on the dropdown button */
.show {
  display: block;
}
