*{
    margin: 0;
    padding: 0;
    line-height: 2;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#title, h2{
    text-align: center;
    background-color: lightgrey;
    color: black;
    width: 100%;
    padding: 10px;
}

p{
    font-style: italic;
}

#img-div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    margin: 0 auto; 
}

#tribute-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    margin: 10px;
}

footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: lightgray;
    color: black;
    height: 40px;
}

a{
   color: black;
}