body {
  margin: 0;
  background-color: #de8d53;
}

.page {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

/* Header */
header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}

.header-title {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
  margin: 0;

}

.header-title h1 {
  margin: 0;
}

.header-links {
  display: flex;
  gap: 0;
  height: 100%;
}

.header-links a {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  min-width: 2.5em;
  white-space: nowrap;
}

.header-links a:first-child {
  background-color: #0c79d6;
  color: #ffffff;
}

.header-links a:last-child {
  background-color: #ffffff;
  color: #de8d53;
}

@media (min-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

/* Main Content */
.content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}

@media (min-width: 768px) {
  .content {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .content > * {
    flex: 1;
  }
}

.content-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.content-text {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 3rem;
  color: #ffffff;
  line-height: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 3rem;
  margin-top: 3.5rem;
}

.content-text h2,
.content-text h3,
.content-text h4 {
  margin: 0;
}

.content-text h3 {
  margin-top: 3.5rem;
}

.content-text h3 a {
  display: inline-block;
  padding: 1.75rem 3rem;
  background-color: #0c79d6;
  text-decoration: none;
}

.highlight {
  color: #adc7ff;
}

.cursor::after {
  content: '|';
  color: #adc7ff;
}

.cursor.blink::after {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Footer */
footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

.footer-social {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-info {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.footer-etc {
  font-family: "Clarkson", Helvetica, sans-serif;
  font-size: 1rem;
  color: #ffffff;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.footer-icons {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  
}

.footer-icons.facebook {
  background-image: url('icons/facebook_blue.svg');
}

.footer-icons.twitter {
  background-image: url('icons/twitter_blue.svg');
}

.footer-icons.youtube {
  background-image: url('icons/youtube_blue.svg');
}

.footer-icons.court {
  background-image: url('icons/court_blue.svg');
  width: 48px;
  height: 48px;
}

.footer-icons.ball {
  background-image: url('icons/ball_blue.svg');
}

@media (min-width: 768px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
  }
  
  footer > * {
    flex: 1;
  }
}