
.content h3 {
    font-size: 20px;
    padding: 20px;
}


h3 {
    text-align: left;
    padding: 20px 0 10px 40px;
    text-decoration: underline;
    color: #191970;
}

h4 {
    text-align: center;
    color: #191970;
}

h5 {
    text-align: center;
    color: #191970;
    font-style: italic;

}

.header {
    text-align: center;
    font-size: 20px;
    position: sticky;
    top: 0;
    /*Required for the stickiness */
}

.wrapper {
    max-width: 100%;
    display: grid;
    grid-gap: 6px;
     grid-template-rows: auto 1fr auto;
     height: 100vh;
}

.panel-band {
    /* needed for the flex layout*/
    flex: 1 1 200px;
    width: 100%;
    text-align: center;

}

.panel-band,
img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 2.5px;
    /* box-shadow: 2px 2px 15px white, -2px -2px 15px white;
    -webkit-box-shadow: 2px 2px 15px white, -2px -2px 15px white;
    transition: transform .60s ease;*/
    /* added just to give the shadow some
breathing space */


}

.panel-band p {
    color: #000000;
    font-style: italic;
}

@media screen and (max-width: 360px) {
    
    li {
        font-size: 18px;
        padding: 0 25px 0 10px
    }

    img {
        max-width: 95%
    }
}

@media screen and (min-width: 360px) and (max-width:1024px) {

    /* no grid support? */

    .sidebar-home {
        padding: 10px 40px 0 10px;
        border: 4px solid #dcdcdc;
        border-style: double;

    }

    .sidebar-home h3 {
        font-size: 22px;
    }

    .sidebar-home ul {
        font-size: 16px;
    }

    .content {
        border: 4px solid #dcdcdc;
        border-style: double;
    }

    .content h3 {
        padding: 20px 0 10px 10px;
    }

    .content p {
        padding: 10px;
    }

    .wrapper {
        margin: 0 auto;
        grid-template-columns: 1fr;
    }

    .header,
    .footer {
        grid-column: 1 / -1;
        /* needed for the floated layout */
        clear: both;
    }

    .panel-band,
    img {
        padding: 5px;
    }

}

@media screen and (min-width: 1024px) {

    /* no grid support? */
    .sidebar-home {
        padding: 10px 40px 0 10px;
        border: 4px solid #dcdcdc;
        border-style: double;
    }

    .sidebar-home h3 {
        font-size: 24px;
    }

    .sidebar-home ul {
        font-size: 18px;
    }

    .content {
        padding: 10px;
        border: 4px solid #dcdcdc;
        border-style: double;
    }

    .wrapper {
        margin: 0 auto;
        grid-template-columns: 2fr 3fr;
        /*Changes wrapper width*/
    }

    .header,
    .footer {
        grid-column: 1 / -1;
        /* needed for the floated layout */
        clear: both;
    }

}

.wrapper>* {
    background-color: #ffffff;
    color: #000000;
    border-radius: 2.5px;
    font-size: 150%;
    /* needed for the floated layout*/
}

/* We need to set the widths used on floated items back to auto, and remove the bottom margin as when we have grid we have gaps. */
@supports (display: grid) {
    .wrapper>* {
        width: auto;
        margin: 0;
    }
}
span{
    font-style: italic;
    text-decoration: underline;
}
