body {
    background-image: url(Webbackground.png);
}
.container {
    width: 60%;
    margin: auto;
}
.title {
    color: white;
    background-color: black;
    border: 3px white solid;
    text-align: center;
}
.gallery {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 20% 80%;
    grid-template-rows: repeat(3, 160px);
}
.stampbar {
    background-color: black;
    border: 3px white solid;
    grid-column: 1;
    grid-row: span 3;
    text-align: center;
    color: white;
}
.tiles {
    background-color: black;
    border: 3px white solid;
    grid-column: 2;
    grid-row: span 3;
    margin-left: 7px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: space-evenly;
    gap: 10px;
    img {
        width: 140px;
        border: white 3px solid;
    }
}
