:root{
  --shadow: rgba(0, 0, 0, 0.90) 5px 5px 5px;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
  }
  
  .container {
    width: 60vw;
    padding: 50px 30px;  
    border-radius: 10px; 
    display: flex;
    flex-direction: column; 
    margin: auto;
  }

  .container > h1{
    margin-bottom: 30px;
  }
  .stats {  
    display: grid;
    grid-template-columns:  repeat(auto-fit,minmax(100px,100px)) ;
    grid-template-rows: minmax(90px,90px);
    grid-gap: 15px;
    justify-content: center;
  }
  .stats>div {  
    padding: 10px 0px 10px 0px;
    font-size: 15px;
    text-align: center;
    border-radius: 15px; 
    background-color: #ccd957;
    box-shadow: var(--shadow);
  }

  .stats > div > p { 
    font-size: 45px; 
  }
  #quote {
    padding: 20px;
    text-align: justify;
    margin: 30px auto 30px auto; 
    background-color: #ccd957;
    min-height: 50px;
    min-width: 30%;
    box-shadow: var(--shadow); 
    font-size: 20px;
  }



  
  textarea {
    background-color: #f5f4c9;
    text-align: left;
    resize: none;
    width: 100%; 
    padding: 15px 15px;
    min-height: 60px;
    font-size: 16px;
    box-shadow: var(--shadow);
    font-family: monospace;
    font-weight: 600;
  }
  button { 
    float: right;
    text-align: center; 
    margin: 20px auto 0px auto;
    background-color: #2c6965; 
    border: none;
    padding: 8px ; 
    font-size: 18px; 
    cursor: pointer; 
    font-family: sans-serif;
    font-weight: 500;
    box-shadow: var(--shadow);

  }
  .result { 
    display: none;
    font-size: 18px;

  }

  .success {
    color: #257f24;
  }
  .fail {
    color: #fb110f;
  }