
*{
  margin: 0;
  padding: 0;
}

.menu-area a{
  display: flex;
  align-items: center; /*This is how you set something on the y axis using css*/
  justify-content: center; /*This is how you set something on the x axis using css*/
  color: #fff;
  background:#087cbc;
  height: 60px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  z-index:10; /*z-index is how you make elements appear on top of others using a numerical value*/
}

.menu-area a:hover{
  background: #00fa9a;
  color: #fff;
}

.menu-area ul{
  list-style: none;
  display: flex;
  z-index:10;
 }

.menu-area li{
  position: relative;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.menu-area li:hover .dropdown > li{
  display: block;
  top: 0;
  left: 0;
}

.dropdown li{
  display: none;
  position: relative;
}

.dropdown{
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.dropdown li:hover li{
  display: block;
  
}
#intro{
	position:absolute;
}
#plan{
	align: right;
	position: relative;
	float:right;
}
#main-content {
    position:relative;
    text-align:center;
    background:#8a2be2;
    border-color:black;
    border-style:solid;
    color:white;
}
#container {
 margin: auto;
 padding: 10px;
 width: 1100px;
 display: flex;
 font-size:20px;
}
h1 {
 text-align:center;
 text-decoration:underline;
 color:white;
}
article{
 text-align:center;
}
h2{
 text-decoration: underline;
 padding:25px;
}
figure{
 padding:20px;
}
header{
 	background-image: linear-gradient(60deg,#32cd32,#40E0D0)
}
footer{
  font-size:20px;
  font-weight:bold;
  background-image:linear-gradient(60deg,#32cd32,#40E0D0)
}
#main-content{
 font-size:20px;
}
#hello{
 font-size:20px;
 color:white;
}
h3{
 text-decoration: underline;
}

#coming-soon{
 font-size:50px;
 color:yellow;
}
footer{
 color:black;
}
ul {
    text-align: center;
    list-style-position: inside;
}
table {
border-collapse: collapse;
width: 100%;
clear: both;
text-align: left;
}

td,th {
border-style: solid;
border-width: thin;
border-color: #C6C5C5;
padding: 5px;
font-size: 0.8em;
}

th {
color: black;
background-color: white;
overflow:auto;
}
table{
 display:flex;
 /*this is how you use flexbox which makes the page always fit the window/screen which is something I learned this year*/
}
caption{
 display:flex;
 margin-bottom:50px; /*This is how you add a margin for just the bottom of an element*/
 position:absolute;
}
famPicText{
	right:30px;
}