body {
    background-color: #ffffff;
    color: #202020;
}

/* nav */
.c-header {
    align-items: center;
    background-color: #f2f2f2;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem; /* - */
    width: 100%;
  }
  
  .c-header__logo {
    color: #202020;
    min-width: 80px; /* - */
    text-decoration: none;
    font-weight: bold;
  }
  
  .c-header__list {
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .c-header__list-item {
    list-style: none;
    text-decoration: none;
  }
  
  .c-header__list-link {
    color: #202020; /* - */
    display: block;
    margin-right: 20px; /* - */
    text-decoration: none;
    padding: 10px 0px; /* - */
  }
  
  .c-header__list-link:hover {
    filter: opacity(0.6); /* - */
  }
  
  .c-hamburger-menu {
    /*position: relative;*/
    position: sticky;
    top: 0px;
    right: 0px;
  }
  
  @media screen and (max-width: 750px) {
    .c-hamburger-menu__list {
      background-color: #f2f2f2;
      align-items: flex-start;
      display: flex;
      flex-direction: column;
      left: 0;
      padding: 2rem; /* - */
      position: absolute;
      transform: translateX(-100%);
      transition: 0.3s; /* - */
      top: 100%;
      width: 100%;
    }
  
    #hamburger:checked ~ .c-hamburger-menu__list {
      transform: translateX(0%);
      transition: 0.3s;
    }
  }
  
  .c-hamburger-menu__input {
    display: none;
  }
  
  .c-hamburger-menu__bg {
    background-color: #f2f2f2;
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    opacity: 0.4; /* - */
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
  }
  
  #hamburger:checked ~ .c-hamburger-menu__bg {
    display: block;
  }
  
  .c-hamburger-menu__button {
    display: none;
  }
  
  @media screen and (max-width: 750px) {
    .c-hamburger-menu__button {
      align-items: center;
      appearance: none;
      background-color: transparent;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px; /* - */
      height: 32px; /* - */
      justify-content: center;
      width: 32px; /* - */
    }
  }
  
  .c-hamburger-menu__button-mark {
    background-color: #202020;
    display: block;
    height: 1px; /* - */
    transition: 0.3s; /* - */
    width: 20px; /* - */
  }
  
  @media screen and (max-width: 750px) {
    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(1) {
      transform: translate(2px, 1px) rotate(45deg); /* - */
      transform-origin: 0%; /* - */
    }
    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(2) {
      opacity: 0;
    }
    #hamburger:checked
      ~ .c-hamburger-menu__button
      .c-hamburger-menu__button-mark:nth-of-type(3) {
      transform: translate(2px, 3px) rotate(-45deg); /* - */
      transform-origin: 0%; /* - */
    }
  }
/* end nav */

/* main */
main {
    align-items: center;
    align-content: center;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 1rem 2rem; /* - */
    width: 100%;
}

.main-content-wrapper {
    min-width: 375px;
    width: 900px;
    background-color: #fff;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 1.2em;
}

.col-md-1 {
    text-align: center;
}

.col-md-1 h1 {
    margin-top: 50px;
}

.col-md-1 p {
    margin-top: 30px;
}

.col-md-2 {
    margin-top: 50px;
}

.col-md-2 h2 {
    margin-top: 20px;
}

.p1 {
    text-align: left;
}

.p2 {
    text-align: right;
}

.p3 {
    font-size: 0.8em;
}

.list-dot {
    list-style-type: disc;
    margin-left: 1.2em;
}

.game-showcase {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.game-box {
    width: 250px;
    margin-top: 50px;
}

.game-box p {
    margin-top: 0.5em;
}
/* end main */

/* footer */
footer {
    align-items: center;
    background-color: #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    padding: 1rem 2rem; /* - */
    margin-top: 30px;
    width: 100%;
}

.c-footer {
    min-width: 375px;
    width: 900px;
    background-color: #fff;
}
/* end footer */
