:root {
  --color-primary-text: #ffffff;
  --color-accent: #c1cf97;
  --color-footer-bg: #0f495c;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Jost', sans-serif;
  --font-ui: 'Roboto', sans-serif;
}

body {
  margin: 0;
  background-color: #000000;
  font-family: var(--font-main);
  color: var(--color-primary-text);
  overflow-x: hidden;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #000000;
}

.container {
  padding: 0 20px;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, p, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sport-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  aspect-ratio: 480 / 450;
  background-size: cover;
  background-position: center;
}

.sport-card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.44;
  color: var(--color-primary-text);
  text-shadow: 4px 4px 14.7px #000000;
  padding: 20px;
}

@media (max-width: 992px) {
  .sports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sport-card-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .sports-grid {
    grid-template-columns: 1fr;
  }
  .sport-card-title {
    font-size: 28px;
  }
}