@import url(./base.css);

:root {
    background-image: url(../assets/background.png);
    background-position: -10px -10px;
}

#container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    margin: 50px;
    padding: 50px;
    width: 1000px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(172, 142, 64);
    border-radius: 15px;
}

#big-title {
    font-size: 40pt;
}

#tribute {
    width: 100%;
}

#tribute > .center-item-vertical {
    text-align: justify;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

#tribute > .center-item-vertical > p {
    width: 70%;
}

.tribute-says {
    margin-left: 15px;
}

#tribute-sign {
    display: block;
    width: 100%;
    text-align: end;
}

.image-container {
    display: flex;
    overflow-x: scroll;
    height: 550px;
}

.image-container > .image-box {
    margin-right: 50px;
}

.image-box {
    width: fit-content;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-box > img {
    max-height: 450px;
    max-width: 450px;
    width: auto;
    height: auto;
}

.image-legend {
    font-size: 16pt;
}


.gifs-grid {
    display: flex;
    flex-wrap: wrap;
}

.gifs-grid a {
    margin-right: 15px;
}

.gifs-grid > a img {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 200px;
}