* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-decoration: none;
  list-style-type: none;
}

html, body {
  height: 100%;
}

body {
  background-color: bisque;
  display: grid;
  grid-template: repeat(6, 1fr)/repeat(12, 1fr);
}

main {
  grid-column-start: 3;
  grid-column-end: -3;
  grid-row-start: 2;
  grid-row-end: -2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 5em;
}

p {
  font-size: .8em;
  margin-top: 10vh;
}

a {
  color: black;
}

nav {
  grid-column-start: -2;
  align-content: center;
  overflow: hidden;
}

.drop-btn {
  background-color: transparent;
  border: none;
}

.dropdown:hover .drop-btn {
  background-image: radial-gradient(rgb(241, 234, 225), bisque);
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 1;
}

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

img {
  width: 50%;
}
