.CCFront {
  text-align: center;

  .primary {
    margin-bottom: 20px;
  }

  .about-button {
    margin-top: 40px;
  }

  .note {
    max-width: 400px;
    font-size: 12px;
    text-align: left;
    margin: 50px auto;
  }
}

.CCPlay {
  display: flex;
  flex-direction: column;
  height: calc(100% - 60px);

  #title {
    margin: 10px 0 3px 0;
  }

  #levelName {
    text-align: center;
    font-size: smaller;
  }

  .board-area {
    position: relative;
    flex-grow: 1;
    min-height: 0;
  }

  .field {
    position: absolute;
  }

  .tile {
    position: absolute;
  }

  .board {
    // background: pink;
    image-rendering: pixelated;
    width: 100%;
    height: 100%;

    .outline {
      position: absolute;
      border: 1px solid black;
    }
  }

  .tile {
    position: absolute;
  }

  .quote-area {
    width: 95%;
    max-width: 700px;
    text-align: center;
    margin: 15px auto 0 auto;
    font-size: 20px;
    font-style: italic;

    .author {
      font-size: 16px;
      opacity: 0.5;
      margin-left: 10px;
    }
  }

  .top {
    text-align: center;
    margin-bottom: 15px;
  }

  .bottom {
    position: absolute;
    left: 10px;
    bottom: 10px;
  }
}

.CCList {
  text-align: center;

  .scenario-list {
    margin-bottom: 40px;
  }

  .scenario {
    margin: 15px 0;
  }
}

.CCAbout {
  h1 {
    text-align: center;
  }

  .scrollable-area > .inner {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
  }

  .row {
    text-align: center;
  }

  .button {
    margin: 10px 0 40px 0;
  }
}

// MODES
.is-cc {
  .top-nav {
    .cc-logo {
      display: inline;
    }

    .nav-item.cc-only {
      display: inline;
    }
  }
}

@media (max-width: 799px), (max-height: 799px) {
  .CCPlay {
    height: 100%;

    .quote-area {
      margin-top: 5px;
      margin-bottom: 10px;
      font-size: 16px;

      .author {
        font-size: 14px;
      }
    }
  }
}
