body {
    background-image: url("https://media0.giphy.com/media/vYTo95h4e2j6M/giphy.gif");
    background-repeat:repeat;
    background-color: white;
}
/*NAME*/
h1 {
    font-family: Arial;
    font-size: 70px;
    border: solid cornflowerblue 5px;
    width: 600px;
    text-align: center;
    color: white;
    padding: 5px;
    background-color: cornflowerblue;
    border-radius: 10px;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
    margin-top: 50px;
}
/*NAV BAR*/
.navul {
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
    background-color: cornflowerblue;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: solid #FF69B4 5px;

}

.navli {
    display: inline-block;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 0;
}

.nava {
    display: block;
    color: white;
    text-align: center;
    padding: 15px 15px;
    text-decoration: none;
    font-family: Arial;
}

a:hover {
    color: black;
}
/*TABLE*/
table thead th {
    font-family: Arial;
    text-align: center;
    background-color: cornflowerblue;
    border-radius: 10px;
    color:white;
}

table tr td img {
    width: 200px;
    height: 200px;
    border: solid 5px cornflowerblue;
    border-radius: 10px;
    text-align: center;
    background-color: white;
    padding: 5px;
}
/*DIV 1*/
div h2 {
    font-family: Arial;
    background-color: cornflowerblue;
    border: solid cornflowerblue 5px;
    border-radius: 10px;
    width: 150px;
    padding: 10px;
    text-align: center;
    color: white;
}

div ul {
    background-color: white;
    font-family: Arial;
    font-size: 20px;
    border: solid cornflowerblue 5px;
    border-radius: 10px;
    text-align: left;
    width: 400px;
    padding-top: 10px;
    padding-bottom: 10px;
}

div img {
    width: 20px;
    height: 20px;
}
/*footer*/
.footer {
    width: 100%;
    height: 40px;
}

