body {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
}

.warning {
  color: red;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.newGameMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.hidden {
  display: none;
}

.header {
  border: 1px solid #777;
  padding: .5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #777;
}

.gameOver {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.msgFromDev {
  padding: 1rem;
}

.intro {
  padding: 0.5rem;
}

.restartGame {
  margin: 0.25rem;
  height: 2.5rem;
  font-size: 1.25rem;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drugList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 275px;
  margin: 0;
  padding: 0.25rem;
}

.drug {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0.25rem 0.25rem;
  padding: 0;
  border: 1px solid #777;
}

.drug:last-child {
  margin-bottom: 0.25rem;
}

.drugTitle {
  text-align: center;
}

.weedStyles {
  background: #00c800;
}

.cocaineStyles {
  background: white;
}

.mdmaStyles {
  background: pink;
}

.lsdStyles {
  background: yellow;
}

.heroinStyles {
  background: beige;
}

.methStyles {
  background: #c8c8c8;
}

.shroomStyles {
  background: rgba(180, 148, 99, 0.76);
}

.buyDrug {
  height: 2.5rem;
}

.sellDrug {
  height: 2.5rem;
}

.main {
  border-left: 1px solid #777;
  width: 50%;
  padding: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 2rem;
}

.locationTitle {
  text-align: center;
}

.travelTitle {
  text-align: center;
}

.travelButton {
  width: 100%;
  height: 2.5rem;
  font-size: 1.5rem;
  background: #cee;
}

.menuButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.startNewGame,
.loadGame,
.blueButtons {
  margin: 2px;
  padding: 0;
  width: 70%;
  height: 2.5rem;
  /* border: 1px solid blue; */
  border: 0;
  background: lightblue;
  font-size: 1.5rem;
  font-weight: bold;
}

.copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

@media (min-width: 550px) {
  body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .wrapper {
    width: 550px;
  }
}
/*# sourceMappingURL=my.css.map */