h1 {
   font-size: 2em; 
}

.outlets {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.outlets > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px 25px;
    color: var(--primary-dark);
    width: 25%;
    min-width: 200px;
}

.outlets > a:hover {
    color: var(--primary);
}

.outlets img {
    width: 100%;
}