@media screen {

    body {
        display: grid;
        grid-template-rows: 90px 50vh 8vh minmax(200px, calc(34vh - 90px)) calc(8vh - 40px) 40px; /* don't forget to account for grid-gap in total height */
        grid-template-columns: 1fr 1fr;
        /*grid-row-gap: 3vh;*/
        align-items: center;
        justify-items: center;
    }

    .copyright {
        grid-row: 6/7;
        grid-column: 2/3;
    }

    .lower-left-bg {
        grid-row: 3/7;
        grid-column: 1/2;
        align-self: stretch;
        justify-self: stretch;
        background-color: #202223;
    }

    .lower-right-bg {
        grid-row: 3/7;
        grid-column: 2/3;
        align-self: stretch;
        justify-self: stretch;
        background-color: #1c1e1f;
    }

    .header {
        grid-column: 1/3;
        z-index: 3;
    }

    .gallery {
        grid-row: 2/4;
        grid-column: 1/3;
        display: grid;
        grid-template-rows: 58vh;
        grid-template-columns: 30vw 40vw 30vw;
        align-items: center;
        justify-items: center;
    }

    .gallery__img {
        grid-row: 1/2;
        grid-column: 1/4;
        max-width: 90vw;
        max-height: 58vh;
        object-fit: contain;
        /*margin-top: 20px;*/
        cursor: pointer;
    }

    .gallery__left-link, .gallery__right-link {
        display: grid;
        height: 50vh;
        align-self: start;
        justify-self: stretch;
        /*margin-top: 5vh;*/
        cursor: pointer;
        z-index: 2;
    }

    .gallery__left-gradient, .gallery__right-gradient {
        height: 100%;
        opacity: 0;
        transition: opacity .2s;
    }

    .gallery__left-arrow, .gallery__right-arrow {
        align-self: center;
        width: 0;
        height: 0;
        border-top: 5vh solid transparent;
        border-bottom: 5vh solid transparent;
        transition: border-right-color .2s;
    }

    .gallery__left-link:hover > .gallery__left-gradient,
    .gallery__right-link:hover > .gallery__right-gradient {
        opacity: 1;
        transition: opacity .2s;
    }

    .gallery__left-link {
        grid-row: 1/2;
        grid-column: 1/2;
    }

    .gallery__left-gradient {
        grid-row: 1/2;
        grid-column: 1/2;
        background: linear-gradient(to right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    }

    .gallery__left-arrow {
        grid-row: 1/2;
        grid-column: 1/2;
        justify-self: left;
        margin-left: 7vw;
        border-right: 3vw solid rgba(255, 255, 255, 0.2);
        transition: border-right-color .2s;
    }

    .gallery__left-link:hover > .gallery__left-arrow {
        border-right-color: rgba(255, 255, 255, 0.6);
        transition: border-right-color .2s;
    }

    .gallery__right-link {
        grid-row: 1/2;
        grid-column: 3/4;
    }

    .gallery__right-gradient {
        grid-row: 1/2;
        grid-column: 1/2;
        background: linear-gradient(to left, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));

    }

    .gallery__right-arrow {
        grid-row: 1/2;
        grid-column: 1/2;
        justify-self: right;
        margin-right: 7vw;
        border-left: 3vw solid rgba(255, 255, 255, 0.2);
        transition: border-right-color .2s;
    }

    .gallery__right-link:hover > .gallery__right-arrow {
        border-left-color: rgba(255, 255, 255, 0.6);
        transition: border-right-color .2s;
    }

    .services {
        grid-row: 4/5;
        grid-column: 1/2;
        justify-self: right;
        margin-right: 3vw;
        margin-left: 4vw;
        display: grid;
        grid-template-rows: repeat(6, max-content);
        grid-template-columns: repeat(3, 160px);
    }

    .services__heading {
        grid-row: 1/2;
        grid-column: 1/4;
        font-size: 3rem;
        padding: 10px 15px;
    }

    .services__link {
        padding: 10px 0 10px 27px;
        border-radius: 2px;
        transition: color .2s, background-color .2s;
    }

    /*.services__link--active {*/
    /*    padding-left: 10px;*/
    /*}*/

    /*.services__link--active::before {*/
    /*    content: '\2714\a0';*/
    /*}*/

    .services__link:hover {
        /*color: #ff5cdf;*/
        /*background-color: rgba(255, 255, 255, 0.1);*/
        text-shadow: 0 0 2px #000;
        transition: color .2s, background-color .2s;
    }

    /*.services__link--active {*/
    /*    color: #ff5cdf;*/
    /*}*/

    .description {
        grid-row: 4/5;
        grid-column: 2/3;
        justify-self: left;
        margin-left: 5vw;
        margin-right: 4vw;
        margin-top: 40px;
        display: grid;
        grid-template-rows: 35px auto auto;
        grid-template-columns: minmax(200px, 400px);
        line-height: 2.3rem;
    }

    .description__heading {
        color: #ff5cdf;
    }

    .description__accordion, .description__accordion-content {
        display: none;
    }

    .description__body {
    }

    .description__link {
        /*grid-row: 4/5;*/
        height: 20px;
        padding: 10px 25px 13px 25px;
        /*margin-top: 20px;*/
        justify-self: left;
        align-self: end;
        /*background-color: #FF3399;*/
        border: 1px solid #828282;
        border-radius: 4px;
        text-align: center;
        transition: background-color .2s;
        margin-top: 10px;
    }

    /*.description__link {*/
    /*    align-self: end;*/
    /*    color: #848484;*/
    /*    transition: color .2s;*/
    /*}*/
    .description__link:hover {
        text-shadow: 0 0 2px #000;
        transition: color .2s;
    }

}

@media screen and (max-width: 900px) {

    body {
        display: grid;
        grid-template-rows: 90px auto auto 40px; /* don't forget to account for grid-gap in total height */
        grid-template-columns: 1fr;
    }

    .copyright {
        grid-row: 4/5;
        grid-column: 1/2;
    }

    .lower-left-bg {
        display: none;
        /*position: fixed;*/
        /*width: 100%;*/
        /*height: 100%;*/
        /*background-color: rgba(22,22,22,0.9);*/
        /*z-index: 1;*/
    }

    .services {
        display: none;
        /*display: grid;*/
        /*position: fixed;*/
        /*justify-self: center;*/
        /*z-index: 1;*/
    }

    .lower-right-bg {
        grid-row: 3/5;
        grid-column: 1/2;
    }

    .header {
        grid-column: 1/2;
    }

    .gallery {
        grid-row: 2/3;
        grid-column: 1/2;
        grid-template-rows: minmax(350px, 80vw);
        grid-template-columns: 1fr 2fr 1fr;
        width: 100%;
        /*height: calc(70vh - 70px);*/
    }

    .gallery__img {
        max-height: 95%;
        max-width: 95%;
        /*width: 100px;*/
        /*height: 100px;*/
    }

    .gallery__left-arrow {
        margin-left: 10px;
    }

    .gallery__right-arrow {
        margin-right: 10px;
    }

    .gallery__left-link, .gallery__right-link {
        height: 100%;
        margin: 0;
    }

    .description {
        grid-row: 3/4;
        grid-column: 1/2;
        align-self: center;
        justify-self: center;
        grid-template-rows: auto auto auto auto;
        margin: 5vh 0 2vh 0;
    }

    .description__heading {
        display: none;
        /*grid-row: 3/4;*/
        /*padding: 20px 0 5px 7px;*/
    }

    .description__body, .description__accordion {
        padding: 3px 0 0 7px;
    }

    .description__accordion {
        grid-row: 2/3;
        /*color: #ff5cdf;*/
        display: grid;
        grid-template-rows: 1fr;
        grid-template-columns: auto auto;
        /*margin-top: 3px;*/
        padding: 10px 0 0 25px;
        cursor: pointer;
        border: 1px solid #2b3036;
        border-radius: 0 0 5px 5px;
        box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }

    .description__accordion:hover {
        background-color: #2b3036;
    }

    .description__accordion:after {
        content: '+';
        font-size: 2rem;
        justify-self: right;
        align-self: center;
        margin-right: 15px;
        padding-bottom: 11px;
    }

    .description__accordion--active:after {
        content: '-';
    }

    .description__accordion--active {
        background-color: #2b3036;
    }

    .description__accordion-content {
        grid-row: 1/2;
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 1fr;
        font-size: 1.6rem;
        background-color: #1f2025;
        max-height: 200px;
        overflow-y: scroll;
        border: solid #2b3036;
        border-width: 1px 1px 0 1px;
        border-radius: 5px 5px 0 0;
    }

    .description__accordion-link {
        padding: 10px 0 10px 35px;
        transition: background-color .2s;
    }

    .description__accordion-link:hover {
        /*background-color: rgba(255, 255, 255, 0.1);*/
        text-shadow: 0 0 2px #000;
        transition: background-color .2s;
    }

    /*.description__accordion-link--active {*/
    /*    color: #ff5cdf;*/
    /*    padding-left: 18px;*/
    /*}*/

    .description__accordion-link--active::before {
        content: '\2714\a0';
    }

    .description__body {
        grid-row: 3/4;
        /*padding-top: 0;*/
        margin-top: 15px;
    }

    .description__link {
        grid-row: 4/5;
        margin-top: 15px;
    }
}

@media screen and (max-width: 420px) {

    body {
        grid-template-rows: 90px auto auto; /* don't forget to account for grid-gap in total height */
        grid-template-columns: minmax(350px, auto);
    }

    .gallery {
        grid-template-rows: 340px;
        /*align-self: stretch;*/
    }

    .gallery__img {
        max-height: 95%;
        max-width: 95%;
    }

    .description {
        grid-template-columns: minmax(300px, 90vw);
        /*margin: 5vh 0;*/
    }

}