body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #3c0880;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 0;
  }
  h1 {
    font-size: 5em;
    text-align: center;
    margin-top: -3em;
    text-shadow: 3px 3px #000;
  }
  .select {
    position: relative;
    display: inline-block;
    margin: 20px;
  }
  .select select {
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    background-color: #9e9e9e;
    border: none;
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    }
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0!important;
    background: #5c6664;
    background-image: none;
    flex: 1;
    padding: 0 .5em;
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    margin-right: -0.5em;
  }
  select::-ms-expand {
    display: none;
  }
  .select {
    position: relative;
    display: inline-block;
    align-items: center;
    width: 20em;
    height: 3em;
    background: #5c6664;
    overflow: hidden;
    border-radius: .25em;
    margin: 1em 0;
    margin-right: 20px;
    margin-left: 20px;
    cursor: pointer;
    }
  .select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 1em;
    background: #2b2e2e;
    cursor:pointer;
    pointer-events:none;
    transition:.25s all ease;
    font-size: 1.2em;
    }
  .select:hover::after {
    color: #23b499;
  }
  .result-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
  }
  .result-container p {
    font-size: 2em;
    margin-bottom: 20px;
  }
  .result {
    font-size: 3em;
    font-weight: bold;
    color: #ffc107;
    text-shadow: 3px 3px #000;
    text-align: center;
    margin-top: 1em;
  }