body {
    background-color: lightblue;    
}


h1 {
    text-align: center;
}

/* here I will take care of navigation bar*/
/*nav {
    
}*/
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 70px;

    border: 1px solid #555;
}
li {
    text-align: center;
}
li a {
    display: block;
}


/*Here I will take care of links itself (continuation of the bar)*/
a:link {
    color: red;
}


a:visited{
    color: green;
}


a:hover {
    color: yellow;
    background-color: #555;
}


a:active {
    color: pink;
    background-color: #4CAF50;
}
/*here is the end of my bar*/



footer {
    background-color: white;
    font-size: 0.9em;
}

#thumbnail {
    height: 150px;
    width: 200px;
}

.content {
    font-family: "Times New Roman";
    font-size: 1.25em;
    color: red;
    background-color: white;
}
