header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header h1 span:nth-child(1) {
  color: #ffdd00;
}

header h1 span:nth-child(2) {
  color: #008e5c;
}

header h1 span:nth-child(3) {
  color: #d60f3c;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 75%;
  margin: auto;
  padding-block: 20px;
  overflow: scroll;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/bg.JPEG");
  background-repeat: repeat;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.5;
  z-index: -1;
}

.title {
  width: min-content;
  white-space: nowrap;
  background-color: #ffffff;
  font-size: 2.25rem;
}

.sub-title {
  background-color: #008e5c;
  color: #ffffff;
  text-align: center;
  font-size: 1.5rem;
}

.u-card {
  background-color: #ffdd00;
}

.u-card-title {
  color: #ffdd00;
  background-color: #d60f3c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.u-card-title:not([data-icon="false"]):before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url('images/soccer_icon.png') no-repeat center / contain;
}

.u-card-content {
  text-align: center;
  padding: 0.75rem;
  font-size: 1.25rem;
}

.u-card-score-title {
  display: flex;
  flex-direction: row;
  gap: 4;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  justify-content: space-between;
}

.u-ul-list {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

.u-ul-list li {
  position: relative;
  padding-left: 1.5em;
}

.u-ul-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  font-size: 0.75rem;
}

.u-ul-list li:nth-child(odd)::before {
  content: "🟡";
}

.u-ul-list li:nth-child(even)::before {
  content: "🟢";
}

.u-link {
  background-color: #008e5c;
  color: #ffdd00;
}