body, html {
	height: 100%;
	margin: 0;
	padding: 0;
	background-image: url(frankocean.png);
	background-size: cover;
	background-repeat: no-repeat;
	font-family: 'Barlow', sans-serif;
  display: block;

}

img {
  padding-top: 525px;
  width: 100%;
  max-height: 100%;
}


.dropdown {
  float: left;
  overflow: hidden;
  padding-left: 90px;
   padding-top: 60px;

}

.dropdown .dropbtn {
  border: none;
  outline: none;
  color: black;
  background-color: inherit;
  font-size: 50px;

}


.dropdown-content {
  display: none;
  position: absolute;
  min-width: 150px;
  z-index: 100;

}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 5px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  text-align: left;
  border-bottom: 2px solid hsla(360, 100%, 100%, 0);
  font-size: 22px;
  animation-name: fadein;
  animation-duration: 2s;

}

.dropdown-content a:hover {
  border-bottom: 2px solid #f1f1f1;

}

.dropdown:hover .dropdown-content {
  display: block;

}