@charset "utf-8";
/*Fixed issue with spacing*/
*{padding:0;
margin:0;}
body{
    background-color: #113;
    color: #CCC;
    font-family: Garamond;
    background-image: linear-gradient(to right, #002, #446); /*Creates a gradient */
    border: dashed #555 5px;
    border-radius: 50px;
    padding: 10px;
}
div{
    border-radius: 25px;
}
nav{
    padding: 5px;
}
footer{
    background-color: #224;
    padding: 5px;
    margin: 5px;
    border-radius: 10px;
}
#Main{
    padding: 10px;
    border: solid #555 5px;
    background-image: linear-gradient(to right, #002, #446); 
}
#text{
    margin: 10px;
    padding: 10px;
    border: solid #555 5px;
    height: 250px;
    width: 450px;
}
#Paragraph{
    margin: 100px;
    padding: 10px;
    float: right;
    border: solid #555 5px;
    width: 500px;
}
/*Nav bar*/
.menu-area a{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background: gray;
    height: 60px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
}
.menu-area a:hover{
    background: #0D0D2F;
    color: fff;
}
.menu-area ul{
    list-style: none;
    display: flex;
}
.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;
}
#container {
    position: relative;
    display: inline-block;
}
/*Explanation aspect*/
#content {
    display: none;
    position: absolute;
    background-color: #333;
    border: 1px solid #ccc;
    padding: 5px;
    z-index: 1;
    background-image: linear-gradient(to right, #002, #224);
}
#container:hover #content {
    display: block;
    border-radius: 10px;
}
#content-2 {
    display: none;
    position: absolute;
    background-color: #333;
    border: 1px solid #ccc;
    padding: 5px;
    z-index: 1;
    background-image: linear-gradient(to right, #002, #224);
}
#container:active #content {
    display: none;
}
#container:active #content-2 {
    display: block;
    border-radius: 10px;
}
#text-button {
    display: flex;
    justify-content: center;
}
#link{
    color: #CCC;
    text-decoration: none;
    cursor: text;
}
.box{
    width: 500px;
}
.boxes{
    width: 500px;
    padding: 10px;
}
#flex{
    display: flex;
    justify-content: space-between;
}
#click:hover{
    color: #DDD;
    background-color: #222;
}
#click{
    background-color: #111;
    color: #CCC;
    margin: 5px;
    background-image: linear-gradient(to right, #002, #224);
}
.IMG-PY {
    float: Right;
}
/*Table setup*/
table {
    border-collapse: collapse;
    clear: both;
    text-align: left;
    width: 1000px;
}

td, th {
    border-style: solid;
    border-width: thin;
    border-color: #C6C5C5;
    padding: 10px;
}
caption{
    font-size: 40px;
}
#Main-Nothing {
    padding: 10px;
    border: solid #555 5px;
    background: #224;
}
#invisable{
    color: #224;
}
.buttons{
    float: right;
}
#Messages{
    float: right;
    border: solid #555 5px;
    padding: 10px;
}