:root {
  --color-bg: #f0f0f0;
  --color-accent1: #3a9d23;
  --color-accent2: #1f4b1f;
  --color-highlight: #a6d608;
  --color-surface: #ffffff;
  --color-text: #222222;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Open Sans";
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-width: 100%;
  min-height: 100vh;
}
main {
  flex: 1;
}

.section-title {
  background: linear-gradient(
    90deg,
    var(--color-accent2) 0%,
    var(--color-accent1) 50%,
    var(--color-highlight) 100%
  );
  border-radius: 10px;
  padding: 10px;
  color: var(--color-surface);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "EB Garamond";
}
h2 {
  font-size: 24px;
  font-weight: bold;
}

h3 {
  font-size: 20px;
  font-weight: bold;
}

table {
  width: 100%;
  background-color: var(--color-surface);
  font-family: "Open Sans";
}

.table-position {
  width: 24px;
}

thead {
  font-family: "EB Garamond";
  font-size: 14px;
}

th, td {
  padding: 10px;
}

.team-name {
  text-align: left;
  color: var(--color-accent2);
}

header {
  background-color: var(--color-surface);
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
footer {
  font-size: 14px;
}
ul,
li {
  list-style-type: none;
}

.post-title,
.post title:link,
.post-title:visited {
  color: var(--color-text) !important;
  text-decoration: none !important;
  font-family: "EB Garamond";
  font-size: 20px;
  font-weight: bold;
}

.logo-text {
  padding-left: 10px;
  color: var(--color-accent2);
  font-family: "EB Garamond";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}
a:link,
a:visited {
  color: var(--color-accent2);
  text-decoration: none;
  font-weight: bold;
}

.matches {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px;
  gap: 10px;
  background-color: var(--color-surface);
}

.match {
  display: block;
  padding: 10px;
  border: 1px solid var(--color-bg);
  border-radius: 10px;
  text-align: center;
}

.home-matches {
  @media (min-width: 768px) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  @media (min-width: 1200px) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.max-width-800 {
  max-width: 800px;
}
.color-accent2 {
  color: var(--color-accent2);
}
.event {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 5px;
  align-items: baseline;
}

.text-small {
  font-size: 14px;
}

.gap-50 {
  @media (min-width: 768px) {
    gap: 100px;
  }
}
.custom-grid {
  display: grid;
  grid-template-columns: 8rem auto 8rem;
  column-gap: 5px;
}

.lineup:link, .lineup:visited {
  color: var(--color-text);
}

section {
  background-color: var(--color-surface);
}