* {
    margin: 0;
}
.parent {
display: grid;
grid-template-columns: repeat(8, 1fr);
grid-template-rows: repeat(10, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.nav { 
    grid-area: 1 / 1 / 2 / 9;         
    background-color: black;
    position: fixed;
    width: 100%;
    margin: 0 auto;
    font-family: Calibri Light;
    font-style: none;
    font-weight: 400;
    font-size: 2rem;
    padding: .25rem;
    text-align: right;
}

.nav h2 {
    text-align: left;
    font-size: 2.5rem;
    padding: 0;
    justify-content: center;
    font-family:  Gabriola;
}

.nav li {
    color: white;
    font-size: 24px ;
    display: inline;
    padding: 0 3rem 0 3rem;

}

.hero-image { 
    grid-area: 1 / 1 / 6 / 9;        
    width: 100%;
    height: 100; 


}
.intro { grid-area: 3 / 2 / 6 / 5;         
    background-color: black;
    padding: 8rem 2rem;
    font-family: Calibri Light;
    justify-content: center;
    text-align: center;

}
.intro h2 {
    font-family:  Gabriola;
font-size: 46px;
}

.me { 
    grid-area: 3 / 5 / 6 / 8;
    background-color: black;
    align-content: center;
    justify-content: center;
    max-width: 1100px; 
    margin: 0px auto;
    padding: 45px 43px 45px 43px;
}

.seniors { grid-area: 6 / 2 / 10 / 4;        
    background-color: #f1f1f2;
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
    font-size: 32px;
    font-family: Calibri Light;
    justify-content: center;
    align-content: center;

}

.seniors p {
    color: #231f20;
    font-size: 24px;

}

.couples { grid-area: 6 / 4 / 10 / 6; 
    background-color: #f1f1f2;
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
    font-size: 32px;
    font-family: Calibri Light;
    justify-content: center;
    align-content: center;

}

.couples p {
    color: #231f20 ;
    font-size: 24px;


}

.families { grid-area: 6 / 6 / 10 / 8; 
    background-color: #f1f1f2;
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
    font-size: 32px;
    font-family: Calibri Light;
    justify-content: center;
    align-content: center;

}

.families p {
    color: #231f20;
    font-size: 24px;

}


.footer { 
        grid-area: 10 / 1 / 11 / 9;        
        background-color: black;
        text-align: center;
        color: #df1a55;
        padding: 2rem 0 0 0;
        justify-self: auto;
        font-family: Gabriola;
font-size: 2rem;
}


h1 {
    color: white;
    padding: 1rem;
}
h2 {
    color: #df1a55;
    padding: 1rem;
    font-family: Gabriola;

}

p {
    color: rgb(255, 255, 255);
    padding: 1rem;

}

    
.center {
    display: block;
    margin-left: auto 0;
    margin-right: auto 0;
    width: 100%;
    padding: 2rem 0 2rem 0;
}

.logo {
    float: left;
max-width:70px;
padding: 1rem;
}