html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;

  color: var(--primary-color);

  --accent-color: #af3236;
  --accent-color-darker: #912d31;
  --accent-color-light: #f5d6d7;
  --backdrop-color: #f8f3f3;
  --backdrop-color-2: #f0e4e4;
  --backdrop-color-3: #eedbdb;
  --primary-color: #181818;

  font-size: 18px;
  scroll-behavior: smooth;
  background-color: #a41e22;
}

body {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--backdrop-color) 0%, var(--backdrop-color-2) 100%);
}

p {
  line-height: 1.35em;
}

h2 {
  color: var(--accent-color);
}

.hero {
  min-height: 100svh;
  position: relative;
  text-align: center;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 0, 0, 0.07) 100%);

  .button {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.container {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 2em;
}

.status {
  display: flex;
  align-items: center;
  font-style: italic;
  font-size: .9em;
  gap: .5em;

  .desc {
    flex-grow: 1;

    p {
      padding: 0;
      margin: 0;
    }
  }
}


.icon {
  font-style: normal;
  padding-right: .2em;
}

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  font-size: 2.2rem;
  color: var(--accent-color);
  text-decoration: none;
  transform: translateX(-50%);
  transition: color 0.2s, transform 0.2s;
  animation: bounce 1.6s infinite;
  z-index: 10;
  cursor: pointer;
}

.scroll-down:hover {
  color: var(--primary-color);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(12px);
  }
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.features {
  >ul {
    display: flex;
    flex-flow: row wrap;
    gap: 40px;
    margin: 0 auto 3rem auto;
    padding-left: 0;
    list-style-type: none;

    >li {
      flex: 1 0 0;
      min-width: 300px;
      border-radius: 0;
      padding: 0.1rem 0 0.1rem 0.1rem;
      margin: 0;
      transition: none;
      border-bottom: 1px solid var(--accent-color);
    }
  }
}

#about {
  min-height: 100vh;
  display: flex;
  flex-flow: column nowrap;

  >.container {
    flex: 1 0 0;
  }
}

.columns {
  display: flex;
  flex-flow: row no-wrap;
  align-items: start;
  gap: 2rem;
  justify-content: center;

  &:first-child {
    flex: 0 0 auto;
  }

  &:last-child {
    flex: 1 0 0;
  }
}

.funding {
  header {
    position: relative;

    a {
      position: absolute;
      right: 0;
      bottom: 0;
    }
  }

  h3 {
    color: var(--accent-color);
    margin-top: 1em;
    text-align: center;
  }

  .sponsors {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    gap: 2rem;
  }
}

.split {
  img {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: .7rem;
    max-width: 120px;
    border-radius: 50%
  }
}

section>footer {
  text-align: center;
  margin-bottom: 2.5rem;
}

#about>footer {
  text-align: center;
  padding: 1.5rem 2rem 1rem 2rem;
  background: linear-gradient(240deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 0, 0, 0.07) 100%);
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;

  p {
    margin: 0.2em 0;
  }

  .contact p {
    text-align: left;
  }

  .links p {
    text-align: right;
  }
}

a {
  color: var(--primary-color);
  transition: color 0.16s;
}

a:hover {
  color: var(--accent-color-darker);
}

a.button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--backdrop-color);
  padding: 0.6em 1.2em;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 1em;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

a.button:hover {
  background-color: var(--accent-color-darker);
  color: var(--backdrop-color-2);
}

h2 {
  text-align: center;
}

h3,
p {
  margin-block: 0.5em;
}

@media screen and (max-width: 500px) {
  #about>footer {
    padding: .7rem .5rem .5rem .5rem;
    font-size: 0.9em;

    p {
      margin: 0.1em 0;
    }
  }

  .container {
    padding: 1em 2em;

    ul {
      margin-bottom: .7em;
    }

    h2 {
      margin-bottom: .7em;
    }
  }
}