#gridcontainer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1fr 1fr 1fr minmax(0, 1fr);
    background-image: url(testimonialbanner.webp);
    background-size: cover;
    background-position: center;
    min-height: 70rem;
    width: 100%;
    border: solid 1px;

}

#nav,
#header,
#main,
#footer {
    font-family: lato;

}

#header {
    display: grid;
    grid-column: 2/6;
    text-align: center;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    font-family: lato;



}

#mobilenav {
    display: none;
}

#nav {
    background-color: rgba(160, 212, 215, .4);
    display: flex;
    border-radius: .3rem;
    text-align: center;
    align-items: center;
    flex-direction: row;
    width: 100%;

}


#main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column: 1/6;

}

#header h1 {
    grid-column: 1/5;
    align-items: center;
    font-size: 5rem;
    background-color: rgba(254, 254, 254, .7);
    font-family: lato;
    padding: 2rem;

}

#footer {
    grid-column: 1/6;
    background-color: rgba(50,118,136,.5);
    text-align: center;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nav ul {
    grid-row: 2/3;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    justify-content: space-between;
    padding: 5.5rem;
    list-style: none;

}

#nav a {
    text-decoration: none;
    color: white;

}

#testimonial1,
#testimonial2,
#testimonial3,
#testimonialone,
#testimonialonecopy {
    border: solid .1px;
    margin: 1rem;
    background-color: black;
    opacity: .75;
    border-radius: 1rem;
    text-align: center;
    font-family: indie flower;
    color: white;
    display: flex;
    align-items: center;
}

#testimonialone {
    grid-column: 2/4;
}

#testimonial1 {
    grid-column: 1/2;
}

#testimonial2 {
    grid-column: 2/3;
}

#testimonial1 p,
#testimonial2 p,
#testimonial3 p,
#testimonialone p,
#testimonialonecopy p {
    padding: 10%;
}
@media (max-width: 960px) {
    #nav {
        display: none;


    }

    #mobilenav {
        display: flex;
        flex-direction: column;
        grid-column: 1/6;
        border: solid 1px;
        justify-content: center;
        color: white;
        text-align: center;
        background-color: rgba(160, 212, 215, .6);





    }
#mobilenav ul {
    list-style: none;
}
    #mobilenav ul a {

        justify-content: space-between;
        text-decoration: none;
        color: white;

    }

    #header {
        grid-column: 1/6;
    }



}
@media (max-width: 960px) {

#testimonialone,#testimonial1,#testimonial2,#testimonial3, #testimonialonecopy {
grid-column: 1/5;

}
#testimonialone {
    display: none;
}


}