body{
    background-color: cornflowerblue;
}
.Heading{
    background-color: cornflowerblue;
    color:white;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.Nav {
    height: 40px;
    background-color: gray;
    color: maroon;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Nav a:hover {
    background-color: coral;
    color: black;
}

.Nav a {
   margin: 10px;
}

.Nav :visited {
    color: maroon;
}

.Content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Content img{
    padding: 5px;
    margin-top: 10px;
    border: 4px solid black;
}

.Content p {
    font-size: 18px;
}
