body{
   
    font-family: "Ariel", serif;
    line-height: 1.5rem;
}

#wrapper{
    background-color: white;
    display:grid;
    grid-template-columns: 
    minmax(0,1fr) repeat(4, minmax(0,250px)) minmax(0,1fr);
    grid-gap:0px;
    grid-auto-rows: minmax(0px,auto);

}

header{
    display: flex;
    background-color: #EBDAF3; 
    grid-row: 1/2;
    grid-column: 2/6;
}
.logo{
    padding-left: 20px;
    padding-top: 20px;
 }


.container{
    background-color: #D9D9D9;
    grid-row: 3/5;
    grid-column: 2/-2;
    display:grid;
    flex-direction: column;
    border-style: solid;
    border-width: 2px;
}

.home{
    height: 400px;
    width: auto;
    float: right;
    padding-right: 40px;
    padding-left: 20px;
}
.pricing ul{
    font-size: 1rem;
    font-weight: bold;
    line-height: 30px;
    margin-left: 40px;
}
.info ul{
    font-size: 1rem;
    font-weight: bold;
    line-height: 30px;
    margin-left: 40px;
}

footer{
    background-color: #EBDAF3;
    height: 107px;
    grid-row: 5/6;
    grid-column: 2/6;
    text-align: center;
}
.box1{
    background-color: #A772BD;
    color: white;
    
    grid-row: 2/3;
    grid-column: 2/6;
    
}
.box1 h2{
    text-align: center;
}
.box2{
    background-color:#A772BD;
    color: white;
    
    grid-row: 3/4;
    grid-column: 2/6;
    
}
.box2 h2{
    text-align: center;
}
.box3{
    background-color: #A772BD; 
    color: white;
    
    grid-row: 4/5;
    grid-column: 2/6;
   
}
.box3 h2{
    text-align: center;
}

.preschool{
    color: white;
    background-color: #A772BD;
    grid-row: 2/3;
    grid-column: 2/6;
}
.junior{
    color: white;
    background-color:#A772BD;
    
    grid-row: 3/4;
    grid-column: 2/6;
}
.senior{
    color: white;
    background-color: #A772BD;
    
    grid-row: 4/5;
    grid-column: 2/6;
}
.picture1{
    height: 400px;
    width: auto;
    float: left;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 20px;

}
.picture2{
    height: 400px;
    width: auto;
    float: left;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 20px;
}
.picture3{
    height: 400px;
    width: auto;
    float: left;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 20px;

}
.preschool h2{
    text-align: center;
}
.junior h2{
    text-align: center;
}
.senior h2{
    text-align: center;
}

.box{
    background-color:white;
    border-style: solid;
    border-width: 3px;
    height: 575px;
    grid-row: 2/3;
    grid-column: 2/6;
}



.nav{
    display: grid;
    grid-template-columns: 4/6;
    grid-template-rows: 1/2;
    font-size: 1.5rem;
    word-spacing: 50px;
    text-decoration: none;
    padding-top: 50px;
}

.nav li{
    list-style: none;
    display: inline;
    text-decoration: none;
}
.nav ul{
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
}

h2{
    padding-left: 40px;
    font-size: 2rem;
    font-family: 'Times New Roman', Times, serif;
}
p{
    margin-left: 40px;
    margin-right: 40px;
    font-size: 1rem;
    line-height: 50px;
}

.box p{
    font-size: 1.5rem;
    text-align: center;
}
.box h1{
    font-size: 2rem;
    text-align: center;
    padding-top: 200px;
}
.alana{
    height: 350px;
    width: auto;
    float: left;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 20px;
   
}

.shelby{
    height: 350px;
    width: auto;
    float: left;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 20px;
}
.siena{
    height: 350px;
    width: auto;
    float: left;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 20px;
}


.registration{
    height: 900px;
    background-color:#D9D9D9;
    grid-row: 2/5;
    grid-column: 2/6;
    border-style: solid;
    border-width: 2px;
}
.registration h2{
    text-align: center;
}
.registration h3{
    text-align: center;
}

label{
    text-align:right 10px;
    margin-right: 10px;
    font-size: 1rem;
    padding-left: 40px;
    margin-bottom: 60px;
    line-height: 30px;
    
    color: black;
}
input{
    color: black;
    margin-bottom: 40px;
}

form{
    display: grid; 
    grid-template-rows: auto;
    grid-template-columns:200px 1fr; 
    padding-top:20px ;
}
#submit{
    
    background-color: white;
}

a{
    color:#A772BD;
}
li a{
    color: black;
    text-decoration: none;
}

@media only screen and (max-width: 992px){
 #wrapper {
    grid-template-columns: minmax(0,1fr) repeat(4, minmax(0,768px)) minmax(0,1fr);
 }
 .nav{
    display: grid;
    grid-template-columns: 4/6;
    grid-template-rows: 1/2;
    font-size: 1.5rem;
    align-items: center;
    word-spacing: 30px;
    text-decoration: none;
    padding-top: 15px;
}
.nav li{
    text-align: left;
    list-style: none;
    text-decoration: none;
    
}
.nav ul{
    text-align: center;
}
.home{
    height: 350px;
}
 h2{
    line-height: 40px;
 }
 p{
    line-height: 45px;
 }
 .header{
    text-align: center;
 }
 .picture1{
    height: 350px;
 }
 .picture2{
    height: 350px;
 }
 .picture3{
    height: 350px;
 }
 

}

@media only screen and (max-width: 678px){
    #wrapper {
        grid-template-columns: minmax(0,1fr) repeat(4, minmax(0,100%)) minmax(0,1fr);
     }
     h2{
        line-height: 40px;
     }
     .home{
        height: 315px;
        align-items: center;
     }
    
     p{
        text-align: left;
        margin-left: 20px;
        margin-right: 20px;
        font-size: 1rem;
        line-height: 40px;
    }
    
    .alana{
        height: 300px;
    }
    .shelby{
        height: 300px;
    }
    .siena{
        height: 300px;
    }
    .picture1{
        align-items: center;
        height: 300px;
        padding-left: 45px;
        
    }
    .preschool p{
        text-align: center;
    }
    .picture2{
        align-items: center;
        height: 300px;
        padding-left: 45px;
    }
    .junior p{
        text-align: center;
    }
    .picture3{
        align-items: center;
        height: 300px;
        padding-left: 45px;
    }
    .senior p{
        text-align: center;
    }
    .nav{
        display: flex;
        font-size: 1.5rem;
        align-items: center;
        word-spacing: 15px;
        text-decoration: none;
    }
    
    .nav li{
        list-style: none;
        display: block;
        text-decoration: none;
        align-items: left;
    }
   
}
   



