#learning-outcomes-panels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-left: 150px;
    margin-top: 100px;
}

.LO-icon {
    width: 200px;
    height: auto;
    margin-right: 180px;
    margin-bottom: 50px;
}

.LO-icon:hover {
    background-color: black;
    transition: ease-in 0.5s;
}

.LO-container {
    margin: 0 100px;
    position: relative;
    text-align: center;
    margin-bottom: 100px;
}

.LO-text {
    font-family: 'Roboto Bold';
    font-size: 20px;
    display: none;
    position: absolute;
    bottom: 0px;
    left: 100px;
    transform: translateX(-50%);
    color: white;
    padding: 5px 5px;
}

.LO-container:hover .LO-text {
    display: block;
}