.content{
    display: flex;
    flex-direction: column;
    gap: 5rem;
    flex-wrap: wrap;
    align-content: center;
    background-color: transparent;
}

.year{
    max-height: 80vh;
    max-width: 60vw;
    overflow: hidden;
    position: relative;
}
.year a{
    text-decoration: none;
}
.year img{
    height: 80%;
    max-width: 100%;
    transition-duration: 0.3s;
}
.year img:hover{
    transform: scale(1.1);
}
.year h2{
    background-color: white;
    margin:0;
    padding: 0.5rem;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
    display: block;

}
.year h2:hover{
}