#services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background-color: black;
    transition: background-color 0.6s ease, border-color 0.6s ease, color 0.6s ease;
}
#services:hover {
    background-color: rgb(11, 11, 11);
}

@media (max-width: 500px) {
    #services {
      flex-direction: column;
      justify-content: center;
     }
}

.serviceWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.serviceWrapper hr {
    margin-top: 0;
    width: 20px;
    border: none;
    border-top: 2px solid rgb(159, 0, 0);
}

#services h3 {
    margin-top: 0;
    font-family: "Fredoka", sans-serif;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 500;
    color: rgb(142, 142, 142);
}