css /* styles.css */ :root { --primary-color: #ff0033; --secondary-color: #33ccff; --border-width: 4px; --font-family: 'Bangers', cursive; } body { background-color: #333; font-family: var(--font-family); margin: 0; padding: 0; line-height: 1.5; font-size: 1.2em; color: #fff; background-image: linear-gradient(to bottom, #000, #333); background-size: 100% 100px; background-position: top; } h1 { color: #fff; border-bottom: var(--border-width) solid var(--primary-color); margin-top: 20px; text-align: center; font-size: 2.5em; text-transform: uppercase; letter-spacing: 2px; } h2 { color: var(--primary-color); border-bottom: var(--border-width) solid #000; margin-top: 20px; text-align: center; font-size: 1.8em; text-transform: uppercase; letter-spacing: 2px; } a { color: var(--primary-color); text-decoration: none; border-bottom: var(--border-width) solid #000; margin: 0 10px 0 0; padding: 0 10px 0 0; font-family: var(--font-family); font-size: 1.2em; transition: background-color 0.5s ease-out; text-transform: uppercase; } a:hover { background-color: var(--primary-color); } img { width: 100%; height: auto; margin: 0; padding: 0; object-fit: cover; border-radius: 4px; box-shadow: 0 0 4px rgba(0, 0, 0, 0.4); } #team { display: grid; grid-template-columns: repeat(2, 1fr 1fr); grid-gap: 20px; padding: 20px; margin: 0; background-color: #000; background-image: linear-gradient(to bottom, #000, #333); background-size: 100% 100px; background-position: top; width: 100%; height: calc(100vh - 40px); } .team-member { grid-column: 1; padding: 20px; border: 4px solid #000; border-radius: 8px; background-color: #fff; background-image: linear-gradient(to bottom, #fff, #ccc); background-size: 100% 100px; background-position: top; transition: background-color 0.5s ease-out; } .team-member h2 { font-size: 1.8em; margin: 0; padding: 0; color: #fff; border-bottom: var(--border-width) solid #000; text-align: center; text-transform: uppercase; letter-spacing: 2px; } .team-member h3 { font-size: 1.4em; margin: 0; padding: 0; color: #000; border-bottom: var(--border-width) solid #000; text-align: center; text-transform: none; letter-spacing: 2px; }