body{
    background-color:antiquewhite;
    font-family:monospace;
}
/*Dropdown Button*/
.dropbtn{
    background-color:tan;
    color:white;
    padding:16px;
    font-size: 16px;
    font-family:monospace;
    border: none;
}
/*container needed to position the dropdown content*/
.dropdown {
    position:relative;
    display: inline-block;
}
/*dropdown content(hidden by default)*/
.dropdown-content {
    display: none;
    position: absolute;
    background-color: tan;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
/*Links inside the dropdown*/
.dropdown-content a{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content a:hover {
    background-color:darkgoldenrod;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    background-color: darkolivegreen;
}
h5{
    color:gray;
}
.box {
    background-color:lightcoral;
    color: whitesmoke;
    border: solid lightcoral 4px;
}
.ul{
    text-decoration: underline;
}

#mylist{
    /*format something specific*/
    font-family:monospace;
    font-size:50px;
    text-decoration: underline;
    text-align: center;
}
#center{
    text-align:center;
}
.tabs a{
    background-color: tan;
    color:black;
    border:solid tan 5px;
}

.row{
    display:flex;
    flex-direction:row;
}
.col{
    display:flex;
    flex-direction:column;
}
