a { position: relative; color: #000; text-decoration: none; } a::after { content: ''; position: absolute; width: 100%; height: 2px; bottom: 0; left: 0; background-color: #000; visibility: hidden; transform: scaleX(0); transform-origin: left; transition: all 0.3s ease-in-out; } a:hover::after { visibility: visible; transform: scaleX(1); }
.container { width: 100%; margin: auto; padding: 15px; display: flex; flex-wrap: wrap; justify-content: space-around; } .box { width: 80%; margin: 15px; padding: 15px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); text-align: center; font-size: 1.2em; background-color: #f9f9f9; transition: transform 0.2s; } .box a { text-decoration: none; color: #333; } .box:hover { transform: scale(1.05); cursor: pointer; } h1 { text-align: center; } .description { font-size: 0.9em; color: #666; margin-top: 10px; } function navigateTo(url) { window.location.href = url; }