*
{
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
}

body {
    padding: 50px 16px;
    background: #cceffc;
    background-color: #ec5252;
  }
  .text
  {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 5%;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 40px;
  }
  #live-poll-area {
    overflow: auto;
      width: 100%;
      max-width: 244px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }
  .graph-container .graph {
    width: 110px;
    margin: 0 auto 25px auto;
  }
  .graph-container .graph canvas {
    max-width: 110px;
    height: auto;
  }
  .bar-chart {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    max-width: 244px;
  }
  .bar-chart li {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.45;
    overflow: auto;
  }
  .bar-chart span {
    display: block;
  }
  .bar-chart .label {
    font-weight: 700;
    width: 70%;
    float: left;
  }
  .bar-chart .percentage {
    width: 30%;
    float: right;
    font-size: 12px;
    text-align: right;
  }
  .bar-chart .bar-track {
    clear: both;
    display: block;
    background: #e6f0f2;
    box-shadow: 0 2px 0 #cccccc;
    height: 5px;
    overflow: visible;
    margin-bottom: 20px;
  }
  .bar-chart .bar {
    display: block;
    height: 5px;
  }
  .bar-chart .answer-0 .bar {
    background-color: #ce0f42;
    box-shadow: 0 2px 0 #99102e;
  }
  .bar-chart .answer-1 .bar {
    background-color: #72be44;
    box-shadow: 0 2px 0 #538e32;
  }
  .bar-chart .answer-2 .bar {
    background-color: #f15637;
    box-shadow: 0 2px 0 #bd4429;
  }
  .bar-chart .answer-3 .bar {
    background-color: #8b1851;
    box-shadow: 0 2px 0 #53002c;
  }
  
  @media only screen and (min-width: 600px) {
      #live-poll-area {
          max-width: 384px;
          flex-direction: row;
      }
    .graph-container .graph {
      margin: 0 30px 0 0;
      padding: 0;
    }
    .bar-chart {
      min-width: 244px;
    }
  }