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;
    text-align: center;
}



.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: 300px;
    width: auto;
    float: right;
    border: black;
    border-style: solid;
    margin-left: 0px;
    margin-right: 20px;
}

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: 3/6;
    
}
.box2{
    background-color:#A772BD;
    color: white;
    
    grid-row: 3/4;
    grid-column: 3/6;
    
}
.box3{
    background-color: #A772BD; 
    color: white;
    
    grid-row: 4/5;
    grid-column: 3/6;
   
}

.preschool{
    color: white;
    background-color: #A772BD;
    grid-row: 2/3;
    grid-column: 4/6;
}
.junior{
    color: white;
    background-color:#A772BD;
    
    grid-row: 3/4;
    grid-column: 4/6;
}
.senior{
    color: white;
    background-color: #A772BD;
    
    grid-row: 4/5;
    grid-column: 4/6;
}
.picture1{
    background-image:url(preschool.jpg);
    grid-row: 2/3;
    grid-column: 2/4;
    background-size: contain;
    background-repeat: no-repeat;

}
.picture2{
    background-image:url(junior.jpg) ;
    grid-row: 3/4;
    grid-column: 2/4;
    background-size: contain;
    background-repeat: no-repeat;
}
.picture3{
    background-image:url(senior.jpg);
    grid-row: 4/5;
    grid-column: 2/4;
    background-size: contain;
    background-repeat: no-repeat;

}


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



.nav{
    display: flex;
    font-size: 1.5rem;
    align-items: center;
    word-spacing: 50px;
    text-decoration: none;
}

.nav li{
    list-style: none;
    display: inline-block;
    text-decoration: none;
}

h2{
    padding-left: 40px;
    font-size: 30pt;
    font-family: 'Times New Roman', Times, serif;
}
p{
    margin-left: 40px;
    margin-right: 40px;
    font-size: 15pt;
    line-height: 50px;
}
.box h1{
    margin-top: 225px;
    font-size: 40pt;
    text-align: center;
}
.box p{
    font-size: 25pt;
    text-align: center;
}
.alana{
    background-image: url(alana.jpg);
    grid-row: 2/3;
    grid-column: 2/3;
    background-size: cover;
    
    background-repeat: no-repeat
}
.shelby{
    background-image: url(shelby.jpg);
    grid-row: 3/4;
    grid-column: 2/3;
    background-size: cover;
    background-repeat: no-repeat;
}
.siena{
    background-image: url(siena.jpg);
    grid-row: 4/5;
    grid-column: 2/3;
    background-size: cover;
    background-repeat: no-repeat
}


.registration{
    height: 1150px;
    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{
    font-size: 15pt;
    
    color: black;
}
input{
    color: black;
}

form{
    display: grid; 
    grid-template-rows: auto;
    grid-template-columns:200px 1fr; 
    gap: 5rem; 
}
#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);
 }

 h2{
    text-align: center;
    line-height: 40px;
 }
 .logo{
    display: grid;
 }

}

@media only screen and (max-width: 678px){
    #wrapper {
        grid-template-columns: minmax(0,1fr) repeat(4, minmax(0,100%)) minmax(0,1fr);
     }
     h2{
        text-align: center;
        line-height: 30px;
     }
     .home{
        display: none;
     }
     .logo{
        display: grid;
     }
     p{
        text-align: center;
        margin-left: 0px;
        margin-right: 0px;
        font-size: 12pt;
        line-height: 30px;
    }
    .nav li{
        list-style: none;
        display: inline-block;
        text-decoration: none;
    }
    .alana{
        display: none;
    }
    .shelby{
        display: none;
    }
    .siena{
        display: none;
    }
}


