h1 {
    text-align: center;
    font-size: 70px;
    margin: auto;
  }
  
    p {
    text-align: center;
    font-size: 20px;
    font-family: Lucida Hand, cursive;
  }
  
.dropdown {
  position: relative;
  display: flex;
  justify-content: center;
}

.dropbtn {
  background-color: #1D5486;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 200px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1
}

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

.dropdown:hover .dropbtn {
  background-color: #07345C;
}