body {
  font-family: "Public Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 14px;
  color: #1B210B;
  background: #F4F0E7;
  line-height: 21px;
}

.wrapper {
    max-width: 800px;
    margin: 30px auto;
    padding: 15px;
}

.logo {
    display: block;
    width: 100px;
}

h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 0;
}

.flex {
    display: flex;
}

nav {
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

nav ul {
    gap: 30px;
}

nav li {
    list-style-type: none;
}

ul, li {
    margin-bott
}

.current {
    font-weight: 600;
    border-bottom: 2px solid #24b574;
    padding-bottom: 2px;
}

a {
    color: #1B210B;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #24b574;
    transition: color 0.3s ease;
}

.fixtures {
    text-align: center;
    margin: 100px 0;
    flex-direction: column;
    gap: 50px;
}

.match {
    flex-direction: column;
    align-items: center;
}

.timecontrol {
    background: #D9D9C8;
    width: fit-content;
    padding: 6px 12px;
    font-family: "Google Sans Code", monospace;
    font-size: 13px;
}

.match p {
    margin: 0;
}

.pairing {
    background: #ECE9DE;
    border: 2px solid #D9D9C8;
    padding: 30px;
    justify-content: space-between;
    align-items: center;
}

.playerw, .playerb {
    align-items: center;
    gap: 30px;
}

.playerw {
    width: 300px;
}

.playerb {
    width: 300px;
    justify-content: flex-end;
}

.name {
    font-size: 24px;
    line-height: 24px;
    font-weight: 300;
}

.white, .black, .vs, .win, .loss, .draw {
    font-family: "Google Sans Code", monospace;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    line-height: 12px;
}

.vs {
    font-size: 14px;
}

.white {
    border: 2px solid #1B210B;
    padding: 4px 7px;
    box-sizing: border-box;
}

.black {
    background: #1B210B;
    padding: 4px 7px;
    color: #fff;
    box-sizing: border-box;
}

.win {
    background: #24b574;
    padding: 5px 7px;
    box-sizing: border-box;
    color: #fff;
    font-size: 10px;
    line-height: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loss {
    background: #F54927;
    padding: 5px 7px;
    box-sizing: border-box;
    color: #fff;
    font-size: 10px;
    line-height: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dates {
    font-family: "Google Sans Code", monospace;
    font-size: 14px;
    opacity: .6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 10px 0 0;
}