*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #212121;
  font-size: 14px;
  background-color: #ffffff;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex-grow: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: 'Oswald', sans-serif;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-header {
  margin-bottom: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  background-color: #e0e0e0;
}

.page-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-nav {
  display: flex;
  gap: 8px;
}

.page-nav .link {
  display: block;
  padding: 4px 8px;
  color: #03a9f4;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
}

.page-nav .link:hover,
.page-nav .link:focus {
  color: #0288d1;
}

.page-nav .link:active {
  color: #f44336;
}

.page-title {
  margin-bottom: 24px;
  font-size: 32px;
  text-align: center;
  line-height: 1.333;
  letter-spacing: 3px;
}

.section {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px dashed #212121;
}

.section-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.333;
  letter-spacing: 1px;
}

.club-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.club-list .item {
  flex-basis: calc((100% - 24px) / 3);
  border-radius: 8px;
  overflow: hidden;
}

.club-list .title {
  margin-bottom: 8px;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.333;
}

.club-list .link {
  color: #03a9f4;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
}

.club-list .link:hover,
.club-list .link:focus {
  color: #0288d1;
}

.club-list .link:active {
  color: #f44336;
}

.downloads .link {
  color: #03a9f4;
  text-decoration: none;
}

.downloads .link:hover,
.downloads .link:focus {
  color: #0288d1;
  text-decoration: underline;
}

.downloads .link:active {
  color: #f44336;
}

.page-footer {
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #212121;
}

.page-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.copyright-text {
  color: #fff;
  flex-basis: 300px;
}

.social-links {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-self: flex-end;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.benefits .item {
  flex-basis: calc((100% - 32px) / 3);
}

.downloads {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}
