/* Variables */
:root {
  /* PRIMARY COLORS */
  --dark: #121721;
  --dark-secondary: #1c2330;

  /* TEXT COLORS */
  --text-primary: #e6e9f0;
  --text-secondary: #aeb4c0;

  /* BRAND HIGHLIGHT COLORS */
  --brand: #39a997;

  --font-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", var(--font-primary);
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  background-color: var(--dark-secondary);
  color: var(--text-primary);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* DEFAULT STYLES */
.main_bg {
  background-color: var(--dark);
  border-radius: 10px;
  padding: 20px;
}

.flex_cntr_spcbtwn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.teams_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 100px;
}

.team {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team h3 {
  text-align: center;
}

.team img {
  width: 60px;
  margin-bottom: 10px;
}

.team_vs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 5px;
}

.team_score {
  font-size: 32px;
}

.team_score_dash {
  color: var(--brand);
}

/* Review box */
.review_box {
  /* background-color: var(--dark);
  border-radius: 12px;
  padding: 18px; */
  color: var(--text-primary);
}

.review_box p {
  margin-bottom: 10px;
}

/* DEFAULT STYLES */
.header {
  margin-bottom: 20px;
}

.header h1 {
  margin-bottom: 20px;
}

.header p {
  line-height: 22px;
}

h1 {
  font-size: 24px;
  padding-left: 7px;
  border-left: 4px solid var(--brand);
}

.section_content h1 {
  margin-bottom: 20px;
}

.section_content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  padding-left: 7px;
  border-left: 4px solid var(--brand);
}

.section_content h3 {
  line-height: 19px;
}

.section_content p {
  font-size: 16px;
  line-height: 24px;
}

.section_content p:not(:last-child) {
  margin-bottom: 15px;
}

.section_content:not(:last-child) {
  margin-bottom: 25px;
}

.section_content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.section_content ul li {
  margin-bottom: 6px;
  line-height: 22px;
}

@media screen and (max-width: 1460px) {
  .container {
    padding: 0px 15px;
  }
  .content_container {
    padding: 80px 15px !important;
  }
}

@media screen and (max-width: 820px) {
  h1 {
    font-size: 22px;
  }

  .section_content h1 {
    margin-bottom: 10px;
  }

  .section_content h2 {
    font-size: 20px;
  }

  .teams_info {
    width: 100%;
    column-gap: 0px;
  }

  .team h3 {
    font-size: 16px;
  }

  .team img {
    width: 50px;
    margin-bottom: 10px;
  }

  .team_score {
    font-size: 28px;
  }
}
