* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-top {
  display: flex;
  align-items: center; /* Align on Cross axis */
  justify-content: center; /* Align on Main axis */
}

.logo {
  margin: 5px;
}

.caption {
  color: gold;
}
.caption p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: xx-large;
  font-weight: 600;
}

.main-menu {
  background-color: dodgerblue;
  margin-bottom: 0%;
}

#main-nav a {
  color: aliceblue;
  background: darkblue;

  height: 32px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.4s;
}

#main-nav a:hover {
  background: lightblue;
  color: darkblue;
}

#main-nav ul {
  list-style: none;
  display: flex;
}

#main-nav li {
  width: 100%;
  text-align: center;
  position: relative;
}

#main-nav li:hover .submenu > li {
  display: block;
  top: 0px;
}

.menu {
  border-radius: 10px;
  background: #73ad21;
  font-size: 12px;
}

.submenu {
  display: flex;
  flex-direction: column;
  position:absolute;
  width: 100%;
  z-index:2;
}

.submenu li {
  display: none;
  top: 0px;
}

.submenu li {
  position: relative;
}

.submenu li:hover .submenu-2 li {
  display: block;
}

.submenu-2 li {
  display: none;
}

.submenu-2 {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0px;
  left: 100%;
  width: 120px;
}

.arrow {
  margin-left: 8px;
  color: #eee;
  font-size: 12px;
}

.top-flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background-color: dodgerblue;
  /* height: 85px; */
  width: auto;
  align-items: center;
}

.top-flex-container h4 {
  color: gold;
}

.top-left {
  flex: 1;
  margin-left: 20px;
  text-align: center;
  border:5px solid #47d3f6 ;
  background-color:indigo;
}
.top-left a {
   color: gold;
   font-size: 20px;
   font-weight: bold;
}

.top-center{
   flex:1;
   font-size: 20px;
   font-weight: bold;
   text-align: center;
   color: gold;
   border:5px solid #47d3f6 ;
   background-color:indigo;
}
.top-center a {
   color: gold;
   font-size: 20px;
   font-weight: bold;
}

.top-right {
  flex: 1;
  margin-right: 20px;
  text-align: center;
  border:5px solid #47d3f6 ;
  background-color:indigo;
}
.top-right a {
   color: gold;
   font-size: 20px;
   font-weight: bold;
}

.top-center-2 {
   flex:2;
   display: flex;
  text-align: center;
  padding:10px;
}
.top-center-2 a h3 {
  color: gold;
  padding: 10px;
}
.top-center-2 h2{
   color:gold;
   padding: 10px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 10vh;
  background-color: #47d3f6;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  border: 5px solid #1900ff;
}

.footer .p {
  font-size: 2rem;
}
.footer button {
  padding: 7px;
  border: solid;
  border-radius: 4px;
  cursor: pointer;
}

.footer button.blue {
  background-color: #3498db;
}

.footer button.green {
  background-color: #2ecc71;
}

.footer button.orange {
  background-color: orangered;
}
