.school-level{
    position: relative;
    width: 90%;
    left: 10%;
    justify-content: center;
    align-items: center;
} 

.image{
    display: block;
    object-fit: center;
    width: 300px;
    height: 300px;
    cursor: pointer;

    justify-content: center;
    align-items: center;
    text-align: center;
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

.caption{
    position: absolute;
    top: 85%;
    left: 40%;
    display: flex;
    flex-direction: column;
    color: black;
    align-items: center;
    justify-content: center;
}

.image-overlay{
    position: absolute;
    top: 0;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: white;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5;
    transition: 0.5s ease-in-out;
    transform: 1;
}

.blur{
    backdrop-filter: blur(5px);
}

.image-overlay:hover{
    opacity: 1;
    transform: 1.1;
    transition: opacity 0.25s;
}

.school-level a{
    color:black;
    text-align:center;
}