/* General */ body { margin: 0; } /* Header */ .header__link { display: block; text-decoration: none; background-color: #333333; color: white; padding: 10px; margin-bottom: 20px; font-size: 22px; font-weight: bold; } /* Index */ .index__poses { display: flex; flex-wrap: wrap; justify-content: space-around; } .index__poseLink { color: #333366; padding: 20px; transition: transform 0.1s ease-in; } .index__poseLink:hover { transform: scale(1.05); } .index__poseName { text-align: center; font-size: 20px; margin: 10px 0; } .index__poseImageParent { display: flex; justify-content: center; align-items: center; width: 300px; height: 300px; } .index__poseImage { max-width: 90%; max-height: 90%; border-radius: 3px; }