.tartiflette-container { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; .tartiflette-box { border-radius: 1rem; padding: 1rem; width: 8rem; text-align: center; background-color: white; } .tartiflette-box:hover { background-color: whitesmoke; } .tartiflette-link { display: inline-block; margin-top: 0.5rem; padding: 0.5rem 1rem; text-decoration: none; color: white; border-radius: 1rem; } .scored { background-color: forestgreen; } .unscored { background-color: firebrick; } .unscored.tartiflette-link:hover { background-color: tomato; } .scored.tartiflette-link:hover { background-color: limegreen; } }