#wrapper{
    display: grid;
    grid-template-rows: 800px;
    grid-template-areas: 
    "header"
    "description"
    "webSub"
    "dan"
    "inwood"
    "inwoodDescription"
    "recordings"
    "cyntheia"
    "footer";
}

body{
    margin: 0px;
    background-color: #f5c4e2;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.title{
    font-size: 250%;
    font-weight: bold;
    margin-left: 10px;
}

#logo{
display: flex;
border-bottom: 5px solid white;
}

.bird{
    height: 100px;
}

.description{
    grid-area: description;
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 5rem;
    color: white;
    font-size: 250%;
}

.inwood{
    grid-area: inwood;
    text-align: center;
    margin-top: 5rem;
    color: #DD65B7;
    font-size: 250%;
    border-bottom: 5px solid white;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 5rem;
}

.inwoodDescription{
    grid-area: inwoodDescription;
    text-align: center;
    font-size: 120%;
    margin-left: 25%;
    margin-right: 25%;
}

#lulu{
    background: url(/media/lulu.jpg) no-repeat center center fixed;
    background-size: 100%;
    background-position: top;
    height: 100%;
    max-height: 600px;
}

@media screen and (min-width: 1000px){
    #lulu{
        background-position: center;
    }
}

@media screen and (max-width: 502px){

    footer img{
        width: 100%;
    }
}

#navigation{
    display:grid;
    justify-items: center;
    grid-template-areas: 
    "aboutLink storiesLink statenIslandLink submitLink resourcesLink";
    border-bottom: 5px solid white;
    font-size: 150%;
    font-weight: bold;
}

#navigation a{
    color: #DD65B7;
}

#navigation a:link{
    color: #DD65B7;
    text-decoration: none;
}

#nagivation a:visited{
    color: #DD65B7;
    text-decoration: none;
}

#navigation a:hover{
    color: #fa90d8;
}

#navigation a:active{
    color: #c157a0;
}

header{
    grid-area: header;
}

#recordings{
    grid-area: recordings;
    margin: 0 auto;
    margin-top: 3rem;
    width: 80%;
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 100px 300px;
    text-align: center;

}

.recording{
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
}

.recording img{
    height: 200px;
    border-radius: 25px;
    margin-bottom: 20px;
}

#cyntheia{
    grid-area: cyntheia;
    justify-items: center;
    text-align: center;
    margin-top: 100px;
}

#cyntheia{
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
}

#cyntheia img{
    height: 200px;
    border-radius: 25px;
    margin-bottom: 20px;
}

#cyntheia h2{
    color: #8A7AA4;
}

.recording h2{
    color: #8A7AA4;
}

.webSub{
    grid-area: webSub;
    text-align: center;
    margin-top: 5rem;
    color: #DD65B7;
    font-size: 250%;
    border-bottom: 5px solid white;
    margin-left: 20%;
    margin-right: 20%;
    margin-top: 5rem;
}

#dan{
    grid-area: dan;
    justify-items: center;
    text-align: center;
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
}

#dan img{
    height: 200px;
    border-radius: 25px;
    margin-bottom: 20px;
}

#dan h2{
    color: #8A7AA4;
}

footer{
    grid-area: footer;
    text-align: center;
    margin-top: 3rem;
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.submit a{
    color: #0089B4;
 }

.submit a:link{
    text-decoration: none;
    }

.submit a:visited{
        text-decoration: none;
}

.submit a:hover{
      color: #00BFEC;
}

.submit a:active{
      color: #10d0fc;
}

.copyright{
    color:gray;
    font-style: italic;
    margin-top: 2rem;
}