css /* style.css */ body { background-color: #333; font-family: 'Bebas Neue', sans-serif; font-size: 18px; line-height: 24px; color: #f7f7f7; } h1 { font-size: 36px; line-height: 48px; color: #f7f7f7; border-bottom: 4px solid #000; padding-bottom: 8px; margin-bottom: 16px; font-weight: bold; text-transform: uppercase; text-align: center; } h2 { font-size: 28px; line-height: 40px; color: #f7f7f7; border-bottom: 3px solid #000; padding-bottom: 6px; margin-bottom: 12px; font-weight: bold; text-transform: uppercase; text-align: center; } h3 { font-size: 24px; line-height: 36px; color: #f7f7f7; border-bottom: 2px solid #000; padding-bottom: 4px; margin-bottom: 8px; font-weight: bold; text-transform: uppercase; text-align: center; } p { font-size: 18px; line-height: 24px; color: #f7f7f7; margin-bottom: 12px; text-align: center; } a { text-decoration: none; color: #f7f7f7; font-weight: bold; text-transform: uppercase; } a:hover { text-decoration: underline; } a:active { color: #000; text-decoration: none; } /* Global Styles */ body { box-sizing: border-box; margin: 0 auto; padding: 0; width: 100%; height: 100vh; background-color: #333; display: flex; justify-content: center; align-items: center; flex-direction: column; } main { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; grid-gap: 16px; padding: 16px; background-color: #000; border: 1px solid #f7f7f7; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }