body {
    background-color: black;
}

.website-container {
    display: grid;
    grid-template-rows: 900px auto auto auto auto auto;
    text-align: center;
}

.top {
    background-image: url('../images/waldfest2.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    grid-template-rows: 40% 60%;
}

.topDown {
    grid-template-rows: repeat(10, 1fr);
    /* Divided into 10 rows */
    background: linear-gradient(to bottom, transparent, rgba(0, 34, 48, 0.99));
}

.middle {
    background-color: rgb(0, 34, 48);
}

@media(min-width: 1201px) {
    .middleCollage {
        display: grid;
        grid-template-columns: 50% 50%;
        text-align: center;
    }
}

.middle img {
    width: 100%;
    height: auto;
}

.photoholder{
    overflow: hidden;
    position: relative;
    width: 100%;
}

@media(max-width: 1200px) {
    .photoholder {
        height: 650px;
    }
}

@media(max-width: 900px) {
    .photoholder {
        height: 550px;
    }
}

@media(min-width: 1201px) {
    .photoholder {
        height: 440px;
    }
}

@media(min-width: 1301px) {
    .photoholder {
        height: 475px;
    }
}

@media(min-width: 1351px) {
    .photoholder {
        height: 490px;
    }
}

@media(min-width: 1401px) {
    .photoholder {
        height: 520px;
    }
}

@media(min-width: 1451px) {
    .photoholder {
        height: 535px;
    }
}

@media(min-width: 1501px) {
    .photoholder {
        height: 555px;
    }
}

@media(min-width: 1601px) {
    .photoholder {
        height: 580px;
    }
}

@media(min-width: 1701px) {
    .photoholder {
        height: 615px;
    }
}

@media(min-width: 1801px) {
    .photoholder {
        height: 645px;
    }
}

@media(min-width: 1901px) {
    .photoholder {
        height: 690px;
    }
}

@media(min-width: 2001px) {
    .photoholder {
        height: 740px;
    }
}

@media(min-width: 2201px) {
    .photoholder {
        height: 790px;
    }
}

@media(min-width: 2351px) {
    .photoholder {
        height: 860px;
    }
}

@media(min-width: 2501px) {
    .photoholder {
        height: 920px;
    }
}

@media(min-width: 2701px) {
    .photoholder {
        height: 1000px;
    }
}

@media(min-width: 2951px) {
    .photoholder {
        height: 1100px;
    }
}
.photoholder h5 {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 10px;
    color: white;
}

.photoholder h6 {
    position: absolute;
    top: 30px;
    left: 0;
    margin: 0;
    padding: 12px;
    color: white;
}

@media (max-width: 800px) {
    .middle img {
        width: 600px;
        height: auto;
    }
}

.bottom {
    background-color: black;
    font-weight: bold;
}

.bottom img {
    width: 3%;
    height: 3%;
}

@media (max-width: 1200px) {
    .bottom img {
        width: 9%;
        height: 9%;
    }
}

* {
    box-sizing: border-box
}

.spacer10 {
    margin: 0 10px;
}