@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/reset-css@5.0.2/reset.min.css");
html,
body {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}

body {
  background-color: #101728;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  font-size: 14px;
}

.container {
  width: 1100px;
  margin: 0 auto;
}

.row {
  margin: 48px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 32px;
}

table {
  display: table;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

td,
th {
  padding: 12px;
}

td:nth-child(2),
th:nth-child(2) {
  width: 140px;
}

.week {
  display: block;
  width: 20px;
}

td img {
  width: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

tr:nth-child(2n) {
  background-color: rgba(255, 255, 255, 0.02);
}

h2 {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: -32px;
  img {
    margin-right: 12px;
  }
}

th {
  text-align: left;
  font-weight: bold;
  img {
    display: block;
    width: 32px;
    margin-bottom: 8px;
  }
}

.leadership {
  width: 800px;
  margin: 48px auto;
  display: flex;
  gap: 24px;

  p {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-top: 12px;
    text-transform: uppercase;
  }

  .lead {
    flex: 1;
    box-shadow: 0 0 32px #39395d;
    border-radius: 32px;

    img {
      width: 100%;
    }
  }
}

.guess {
  padding: 8px;

  div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0;
  }

  img {
    width: 12px !important;
    margin-right: 4px;
  }
}
