#wrapper{
    display: grid;
    grid-template-rows: 800px;
    grid-template-areas: 
    "header"
    "description"
    "what"
    "about"
    "bio"
    "birdMemory"
    "more"
    "moreBird"
    "socials"
    "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;
}

#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;
    }
}

#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;
}

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

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

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

#about h3{
    text-align: center;
    font-size: 160%;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 2rem;
}

#bio{
    grid-area: bio;
    align-items: center;
    justify-content: center;
}


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

#bio h3{
    text-align: center;
    font-size: 150%;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 2rem;
}

iframe{
    display:block;
    margin: 0 auto;
}

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

#birdMemory h2{
    color: #8A7AA4;
}

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

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

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

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

#moreBird h3{
    text-align: center;
    font-size: 150%;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 2rem;
    color: #8A7AA4;
}

#moreBird p{
    text-align: center;
    font-size: 120%;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 2rem;
    font-weight: bold;
}

.inwood{
    width: 50%;
    min-width: 400px;
    border-radius: 25px;
}

.statenIsland{
    width: 50%;
    min-width: 400px;
    border-radius: 25px;
}

.harlem{
    width: 50%;
    min-width: 400px;
    border-radius: 25px;
}

#moreBird a{
    color: #0089B4;
}

#moreBird a:link{
    color: #0089B4;
    text-decoration: none;
}

#moreBird a:visited{
    color: #0089B4;
    text-decoration: none;
}

#moreBird a:hover{
    color: #00BFEC;
}

#moreBird a:active{
    color: #10d0fc;
}

#socials{
    grid-area: socials;
}

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

footer{
    color:gray;
    font-style: italic;
    grid-area: footer;
    text-align: center;
    margin-top: 2rem;
}
