#gear {
    margin: 0px auto 40px auto;
    display: flex;
    justify-content: center;
}

#gear li {
    height: 44px;
    color: white;
    list-style: none;
    text-align: left;
    background-color: coral;
    vertical-align: middle;
    line-height: 44px;
    margin: 10px;
    align-items: center;
    display: flex;
    border-radius: 44px;
    padding-right: 10px;

    background-color: rgba(255, 228, 225, 0.1);
    background-size: cover;
    box-shadow: 0px 0px 4px rgba(255, 228, 225, 0.5);
}

#gear .list-header {
    color: white;
    font-size: 14pt;
    font-style: italic;
    margin-left: 20px;
}

#gear img {
    height: 44px;
    width: 44px;
    margin-right: 10px;
    border-radius: 44px;
    transition-duration: 400ms;
    object-fit: contain;
    background-color: white;
}

#gear img:hover {
    transform: scale(2);
}

@media (max-width: 1000px),
(orientation: portrait) {
    #gear {
        display: grid
    }
}