/* makes every element have the font Handlee, weight 400, and normal style */
/* !important makes the font-family and font-style override all other stylings on those properties */
html * {
    font-family: "Handlee", cursive !important; 
    font-weight: 400;
    font-style: normal !important;
}

/* changes the background color of the entire page */
body {
    background-color: #129490;
   }

/* add the line under h1 using border-bottom */
h1 {
    color: white;
    border-bottom: 1px solid black;
    font-size: 60px;
    font-weight: 700;
    padding-top: 80px;
    padding-bottom: 20px;
    text-align: center;
}

h2 {
    color: #BEE4FC;
    font-size: 40px;
    font-weight: 700;
    padding-left: 10px;
}

/* the webkit text stroke width and color adds a black stroke to the text */
p {
    color:#D4FAE4;
    -webkit-text-stroke-width: 0.3px;
    -webkit-text-stroke-color: black;
    font-size: 22px;
    text-indent: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

li {
    color: #F7E91D;
    font-size: 25px;
}

/* changes the display of dropdown-content to none which hides it */
.dropdown-content {
    display: none;
    background-color: #E4F3F3;
    position: absolute;
    width: 100%;
    margin-top: 5px;
    box-shadow: 0 0 10px 0 black;
    z-index: 98;
}

/* when dropdown section is hovered, the dropdown-content will be visible */
.dropdown:hover .dropdown-content {
    display: block;
}

/* position is fixed and z-index is 99 so it says fixed on top and overrides any other elements, also adds a shadow underneath the header section */
header {
    background-color: #EDE8F5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 25px 0 black;
    z-index: 99;
}

/* aligns the elements in nav to the left */
nav {
    margin-right: auto;
    margin-left: 0;
}

/* removes the bullet points of the list elements in the nav bar */
nav li {
    color: black;
    display: inline-block;
    position: relative;
    margin: 10px;
    font-size: 25px;
    font-weight: 700;
    padding: 8px 16px;
}


/* removes the underline for links */
a {
    color: #b8caff;
    font-size: 22px;
    text-decoration: none;
}

/* the font-weight is thicker and display block makes it take up the whole width */
nav a {
    display: block;
    font-size: 25px;
    font-weight: 700;
}

.dropdown-content a {
    display: block;
    color: #000000;
    padding: 5px;
    font-size: 16px;
}

a:link {
    color: #0A52F7;
    background-color: transparent;
}

nav a:link {
    color: black;
}

a:visited {
    color: #90B2FF;
    background-color: transparent;
}

nav a:visited {
    color: black;
}

a:hover {
    color: hotpink;
    background-color: transparent;
}

/* adds a line below the link in the nav bar that's hovered */
.MPage:hover {
    border-bottom: 3px solid black;
    border-top: 3px solid transparent;
}

.dropdown-content a:hover {
    background-color: #00ABE7;
}

a:active {
    color: yellow;
    background-color:transparent;
}


/* margin-left and margin-right will center the image */
#mainIMG {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid black;
    width: 800px;
}

/* adds a border to every cell in the table and makes it round */
table, th, td {
    border: 1px solid black;
    border-radius: 5px;
}

/* covers the entire width */
table {
    background-color: #8E9AAF;
    width: 100%;
}

th {
    background-color: #DEE2FF;
}

td {
    text-align: center;
    background-color: #FEEAFA;
}
