/* myStyle.css */

body{
    background-color: #66CCFF;
    font-family: arial, sans-serif;
}

#wrapper { background-color: #EEEEEE; 
           color: #000000;
           width: 85%;
		   margin: auto;
           min-width: 850px;
		   max-width: 1200px;
           padding: 2em;
} 

h1{
    text-align: center;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    background-color: #DCDCDC	; 
}

td, th {
    border: 1px solid #66CCFF;
    text-align: center;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #66CCFF;
}



header{
    text-align: center;
}

footer{
    font-size: .8em;
}


nav{
    text-align: center;
}

.button{
    border-radius: 8px;
    padding: 10px 30px;
    color: #FFFFFF;
    background-color: #0099FF;
    font-family: Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}


.button:hover {
    background-color: #0000FF;
    color: #FFFFFF;
}

.active {
    border-radius: 8px;
    padding: 10px 30px;
    font-family: Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #0000FF;
    color: #FFFFFF;
}
  
.dropbtn {
    border-radius: 8px;
    padding: 10px 30px;
    color: #FFFFFF;
    background-color: #0099FF;
    font-family: Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #0099FF;
    padding: 12px 5px;
    font-family: Arial, sans-serif;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #0000FF;
}


.paragraph1 {
    font-size: 1em;
  }

