/* Variables */
:root {
  --base-font-size: 16px;
  --black: #3C3C3C;
  --green: #6BAB90;
}

/* Reset default styles */
h1 {
  all: unset;
}
button {
  all: unset;
  cursor: pointer;
}

/* Styles */
body {
    font-size: var(--base-font-size);
    background: var(--green);
    margin: 0;
    padding: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
}
h1 {
    color: var(--black);
}

.title-container {
    margin-top: 3vh;
    display: flex;
    justify-content: center;
}

.title {
    font-size: 3rem;
}

.tab-container {
    margin-top: 2vh;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.tab-content-container {
    width: 40vw;
    margin: 0 auto;
    padding: 2rem 0;
}

#games {
    text-align: center;
}

.tab.active {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: var(--black);
}

.tab:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: var(--black);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}