body, html {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Barlow', sans-serif;


}

h1 {
  color: black;
  font-size: 70px;
  float: right;
  padding-right: 6%;
  margin-bottom: 0;
}


img {
  width: 30%;
}

#bottom {
  width: 100%;
  max-height: 100%;
}

.row {
  padding-top: 15%;
  padding-left: 21%;

}

.column {
    float: left;
    width: 25%;
    padding: 10px;
    
}

.column img {
    margin-top: 12px;
    width: 100%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width: 800px) {
    .column {
        width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .column {
        width: 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;

}