*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.photo-heading {
    display: block;
    margin: 0 auto;
    width: 80%;
}

.photo-heading h1 {
    font-family: 'Dancing Script', cursive;
    text-align: center;
    margin-block: 30px;
    font-size: 45px;
    color: #192F59;
}

.photo-heading p {
    color: #333333;
    padding-bottom: 50px;
   width: 100%;
   margin: 0 auto;
}
.gallery-images{
    /* background-color: red; */
    display: grid;
    grid-template-columns: repeat(3,1fr);
    width: 80%;
    margin: 0 auto;
    margin-bottom: 100px;
}
.classroom{
    width: 80%;
    margin: 0 auto;
}
.gallery-images h1{
    font-size: 1.5em;
    color: #333333;
}
.gallery-images img{
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-block: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.music-heading h1{
    font-family: 'Dancing Script', cursive;
    text-align: center;
    margin-top: 20px;
    font-size: 45px;
    color: #192F59;
}

.music-images img{
    /* width:350px;
    border-radius: 10px; */
    margin-block: 20px;
    border-radius: 10px;
}
.music-images{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    width: 80%;
    margin: 0 auto;
    gap: 50px;
    margin-bottom: 100px; 
}

@media only screen and (max-width: 988px) {
    .gallery-images{
        display: block;
        width:100%;
        margin: 0 auto;
    }
    .gallery-images img{
        display: block;
        width: 100%;
    }
    .music-images {
        display: block;
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }  
   
section{
    width: 80%;
    margin: 0 auto;
    padding-bottom: 100px;
}
.music-images img {
	display: block;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	padding-block: 20px;
}
.photo-heading{
    position: relative;
    z-index: -1;
}
.music-heading{
    position: relative;
    z-index: -1;
}
}
