.cover-entry {
    text-align: center;
}

.cover-grid {
    padding-top: 2.5%;
    width: 100%;
    display: grid;
}

.cover-entry img {
    border: 4px solid #c9feff;
    transform: scale(1.0);
    transition: all ease 0.8s;
    max-height: auto;
}

.cover-entry img:hover {
    transform: scale(1.1);
    transition: all ease 0.8s;
}

/* mobile */
@media only screen and (max-width: 500px) {

}

/* pcs */
@media only screen and (min-width: 500px) {

}

#back-arrow {
    width: 2.5em;
    /* margin-right: 1%; */
    text-decoration: none;
    margin-top: 0;
    margin-bottom: 0;
    /* font-size: 2.5em; */
    text-shadow: -1px -1px black;
    /* font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    transform: scale(1.0, 1.0);
    transition: all ease 0.8s;
    /* padding-right: 1em; */
    /* font-variant-emoji: text; */
}

#back-arrow:hover {
    transform: scale(1.1, 1.1);
    transition: all ease 0.8s;
    cursor: pointer;
}

.back-icon {
    rotate: 90deg;
    width: 100%;
    display: block;
    margin: 0;
    margin-top: .5em;
    /* position: relative; */
    /* top: 25%;  */
    filter: drop-shadow(1px 1px 1px rgb(0, 0, 0));
}

#label {
    width: 30%;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 2.5em;
    text-shadow: -1px -1px black;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.top-flex { 
    margin-top: 2em;
    display: flex;
    justify-content: flex-start;
    /* height: */
}

.section-container { 
    width: 80%;
    margin: 0 auto;
}

.p-text {
    filter: brightness(100%);
    transform: scale(1.0, 1.0);
    transition: all ease 0.8s;
}

.p-text:hover{
    filter: brightness(150%);
    transform: scale(1.1, 1.1);
    transition: all ease 0.8s;
}

p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.soundcloud-icon {
    max-width: 10em;
    height: auto;

    transform: scale(1.0);
    /* filter: blur(0.05rem); */

    transition: all ease 0.8s;
}

.github-icon {
    max-width: 10em;
    height: auto;

    transform: scale(1.0);
    /* filter: blur(0.05rem); */

    transition: all ease 0.8s;
}

.soundcloud-icon:hover {
    transform: scale(1.1);
    /* filter: blur(0.025rem); */

    transition: all ease 0.8s;
}

.github-icon:hover {
    transform: scale(1.1);
    /* filter: blur(0.025rem); */

    transition: all ease 0.8s;
}

@media only screen and (max-width: 500px) {
    .cover-entry img {
        max-width: 80%;
        /* border: 10px solid black; */
    }

    .cover-grid {
        grid-template-rows: 1fr;
        grid-template-columns: 1fr;
    }

    .inner-text {
        font-size: 1.25em;
    }

    .inner-text-entry {
        font-size: 1.0em;
    }

    #label {
        font-size: 1.75em;
        margin: auto 0;
    }

    .demo-image img {
        max-width: 100%;
    }
}

@media only screen and (min-width: 500px) {
    .cover-entry img {
        max-width: 50%;
    }

    .cover-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .inner-text {
        font-size: 1.5em;
    }

    .inner-text-entry {
        font-size: 1.25em;
    }

    .demo-image img {
        max-width: 30em;
    }
}