.teach-grid{
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
.teach-grid ul {
    justify-self: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: fit-content;
}
.teach-link {
    justify-self: center;
    padding: 20px;
    border-radius: 10px;
    color:black;
    font-size: 1rem;
    font-weight: 900;
    transition: 1s;
    background-color: #60f66f;
}

.teach-grid a:hover{
    background: url(images/menu_bg.png)  no-repeat center center/cover;
    color: white;
    
}