.show1 {
    display: flex;
    padding: 3% 15%;
    background-image: url(../img/background/black.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.show1 img {
    width: 40%;
    margin: 40px;
}

.show2 {
    background-image: url(../img/shows/show2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0;
}

.show2-bg {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 50px 0;
}

.show2-content {
    margin: 3% 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.show2-content a {
    color: #FFF0E3;
    height: fit-content;
    width: fit-content;
    border-style: solid;
    border-radius: 5px;
    border-color: #FFF0E3;
    text-transform: uppercase;
    background-image: url(../img/icons/arrowDown.svg);
    /* Icon by KDE from SVG Repo: https://www.svgrepo.com/svg/500141/arrow-down, licensed under GPL License */
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 15px;
    margin-top: 15px;
    padding-bottom: 45px;
    margin-bottom: 7%;
    transition: all 0.5s;
}

.show2-content a:hover {
    color: black;
    background-color: #FFF0E3;
    border-color: black;
    background-image: url(../img/icons/arrowDownB.svg);
    /* Icon by KDE from SVG Repo: https://www.svgrepo.com/svg/500141/arrow-down, licensed under GPL License */
    padding: 17px;
    padding-bottom: 50px;
    margin-bottom: calc(7% - 5px);
}

@media (max-width: 900px) {
    .show1 {
        flex-direction: column;
    }
    
    .show1 img {
        width: 100%;
        margin: 20px;
    }
}