* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-start;
    background: linear-gradient(0deg, rgba(19,41,61,1) 0%, rgba(237,245,249,1) 63%);
  }

  
  
  
  .score-container {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
  }
  
  button {
    background: rgba;
    border-radius: 8px;
    color: #13293d;
    cursor: pointer;
    font-size: 2em;
    letter-spacing: 0.21px;
    line-height: 16px;
    max-width: 255px;
    padding: 20px 52px;
    text-align: center;
    transition-duration: 0.15s;
    transition-property: background-color;
    transition-timing-function: linear;
    margin-top: 0.6em;
  }
  
  header {
    padding: 40px;
    text-align: center;
    background: #13293d;
    color: #fff;
    border-bottom:30px #879274;
  }


  main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  section {
    flex: 0 auto;
    padding: 8px;
    margin-top: 50px;
    background-color: white;
    border-radius: 8px;
  }
  

.form-input {
    width: 100%;
    padding: 0.25rem;
    color: #1a1a1a;
    background-color: #ffffff;
    margin: 0.25rem 0;
    font-size: 1rem;
    border: 1px solid #484848;
    border-radius: 0.3rem;
    display: in-line;
  }

  .reset-button {
    font-size: 14px;
    text-align: left;
    height: 30px;
    line-height: 9px;
    margin-top: 20px;
  }

  .initial-button {
    font-size: 14px;
    text-align: left;
    height: 30px;
  }
  
  .results {
    width: 30vw;
    height: 400px;
  } 

h2 {
  width: 100%;
  position: align-center;
}

  .card {
    border: 1px solid #eceff1;
    border-radius: 8px;
    box-shadow: rgba(60, 64, 67, 2) 0 1px 2px 0,
      rgba(60, 64, 67, 0.15) 0 2px 4px 3px;
    margin: auto;
    padding: 2px;
  }

  .choose {
    display: inline-block;
    }

  .card #question {
    font-size: 1.8rem;
    font-weight: 700;
    border: 1px solid;
  }

  .buttons {
    margin: 1.5rem 0 4rem 0;
  }

  .btn {
    text-align: center;
    font-size: 1.8rem;
    background-color: lightskyblue;
    color:rgba;
    border: 1px solid;
    border-radius: 5px;
    margin-left: 10px;
    padding: 1rem;

  }
  .btn:hover {
    cursor: pointer;
    background-color: var(--color-primary);
  }

  .btn:active {
    background-color: var(--color-secondary);
  }

  #score {
    color:#1a1a1a;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .large-font {
    font-size: 2em;
    text-align:center;
  }
  
  .timer {
    height: 150px;
    padding: 10px;
    background: #13293d;
    color: #fff;
    text-align: center;
  }
  
  .timer-text {
    padding: 10px;
  }
  
  @media screen and (max-width: 1183px) {
    main {
      flex-direction: column;
    }
  
    .results {
      width: 90vw;
    }
  
    section {
      background-color: white;
      margin: 20px auto;
      width: 92vw;
    }
  }
  
  @media screen and (max-width: 504px) {
    .large-font {
      font-size: 2em;
    }
  
    .reset-button {
      font-size: 12px;
      width: 20ox;
      
    }
  
    .timer {
      height: 200px;
    }
  }
  