* {
    box-sizing: border-box;
    font-family: 'Saira', sans-serif;
    font-size: 16px;
    color: #333;
    margin: 0;
    padding: 0;
  }

  img {
    display: block;
    margin-left: auto;
    margin-right:auto;
    width: 300px;
    padding-bottom: 10px;
  }
  body {
    background: #eee;
    padding: 20px;
  }
  #chart {
    display: block;
    width: 100%;
    height: auto;
    background: white;
  }
  #container {
    margin: 0 auto;
    max-width: 600px;
    background: white;
    border: 1px black solid;
    border-radius: 5px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
  }
  .container-padding {
    padding: 40px;
  }
  #description,
  #disclaimer {
    margin: 0 auto;
    padding: 40px;
    max-width: 600px;
    text-align: center;
    padding-bottom: 0;
  }
  #disclaimer {
    text-align: left;
    padding-bottom: 40px;
  }
  #question {
    font-weight: 500px;
    font-size: 26px;
    line-height: 40px;
    text-transform: uppercase;
  }
  #question label {
    display: flex;
    align-items: center;
    font-size: 28px;
    margin: 10px 0px;
  }
  #question label input,
  #question label select {
    flex-grow: 1;
    margin-left: 5px;
    font-size: 20px;
    padding: 10px;
    width: 100%;
    text-transform: uppercase;
  }
  #question button {
    margin-top: 15px;
    display: block;
    width: 100%;
    padding: 20px;
    text-transform: uppercase;
    font-weight: bold;
    background: rgb(140, 131, 184);
    border: 1px black solid;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    color: white;
  }
  .stat {
    display: flex;
    flex-direction: column;
    align-items: left;
    margin-bottom: 0 auto;
  }
  .stat:last-child {
    margin-bottom: 0;
  }
  .stat > span {
    font-size: 20px;
  }
  .stat div {
    margin-left: 10px;
    font-size: 30px;
    font-weight: bold;
  }
  #investment-profit {
    color: #029202;
    font-size: 40px;
  }
  #investment-profit::after {
    content: "\1F4B0";
  }
  #investment-profit.red {
    color: red;
  }
  #investment-profit.red::after {
    content: "";
  }
  
  #percentage-change {
    color: #029202;
  }
  #percentage-change.red {
    color: red;
  }
  
  #stats-finished {
    border-top: 1px #ccc dashed;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 18px;
  }
  
  #stats-finished p {
    margin-bottom: 20px;
  }
  
  #start-trading-button {
    display: block;
    margin-bottom: 20px;
    text-align: center;
    padding: 20px;
    text-transform: uppercase;
    font-weight: bold;
    background: #029202;
    border: 1px black solid;
    font-size: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-decoration: none;
    color: white;
  }
  #question button:hover,
  #start-trading-button:hover {
    background: #029202;
    
  }
  #try-again-button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #eee;
    border: 1px #333 solid;
    border-radius: 5px;
    text-align: center;
    color: #666;
    cursor: pointer;
  }
  
  .hidden {
    display: none !important;
  }
  
  #page-title {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 10px;
    color: #555;
    letter-spacing: 1px;
    font-family: 'Saira', sans-serif;
  }

  #heading {
    color: #eee;
    font-size: 20px;
    text-align: center;
}

.so {
  padding-top: 10px;
  margin: 5px 10px;

}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  height: auto;
  width: auto;


}

hr {
  width: 100%;
  color: black;

}


