#wrapper{
    display: grid;
    grid-template-rows: 800px;
    grid-template-areas: 
    "header"
    "description"
    "aboutTitle"
    "about"
    "birdTitle"
    "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: 10rem;
    color: white;
    font-size: 250%;
}

.aboutTitle{
    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%;
}

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

#about a{
    color: #0089B4;
}

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

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

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

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

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

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

.birdTitle{
    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;
}