body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    background-image: url("../img/bg.gif");
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 900px;
    flex-direction: column;
    margin: auto;
}
.txt_tribute{
    text-align: center;
    padding-top: 50px;
}
.txt_tribute h1{
    font-size: 50px;
    font-weight: 400;
    padding: 0;
    margin: 0;
}
.txt_tribute h3{
    margin: 0;
    padding: 0;
    font-weight: 400;
}
.img_tribute img {
    max-height: 600px;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.img_tribute img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.img_tribute figure{
    background-color: rgba(255, 255, 255, .1);
    padding: 5px;
    border-radius: 50px 50px 30px 30px;
}
.img_tribute figcaption{
    padding-left: 20px;
    padding: 10px;
}
.img_tribute figcaption h3{
    margin: 0;
    padding-left: 10px;
    color: white;
}
.img_tribute figcaption p{
    margin: 0;
    color: white;
    text-indent: 25px;
}
.bio{
    width: 80%;
    padding: 0px;
    border-left: 1px solid white;
    margin-top: 50px;
}
.timeline_date {
    font-weight: bold;
    font-size: 16px;
    color: white;
    margin: 0;
}
.timeline_item{
    padding-top: 20px;
    padding-left: 20px;
}
.timeline_item p{
    margin: 0;
    padding-left: 20px;
    color: rgb(179, 179, 179);
    font-size: 14px;
}
.timeline_item i{
    padding-right: 10px;
}
footer p{
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 14px;
    text-align: center;
    color: rgb(179, 179, 179);
}
footer a{
    text-decoration: underline dotted;
    text-underline-offset: 4px;
    color: white;
}
footer a:hover{
    color: rgb(64, 163, 255);
}

@media (max-width: 768px){
    .container{
        width: 100%;
    }
    .img_tribute img {
        width: 100%;
    }
}