/* Florida COVID-19 Tracker by ZIP Code
Gelson Cardoso Jr / 2020 Shellhacks */

body {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    font-weight: 100;
    font-size: 15px;
    line-height: 30px;
    color: #777;
    background: rgb(22, 61, 103);
    background-image: url('/background.jpg');
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display:flex;
  }

  .container {
      display: grid;
      align-items: center;
      justify-content: center;
      margin: auto;
  }

  .main {
    background: #fff;
    min-width: fit-content;
    width: fit-content;
    max-width: 90%;
    height: fit-content;
    margin: 0 auto;
    padding: 25px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); 
  }
  
  h3 {
    display: block;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
    color: rgb(48, 96, 191);
  }
    
  p {
    margin: 5px 0 15px;
    display: block;
    font-size: 15px;
    font-weight: 400;
  }
  
  p.thick {
      font-weight: 600;
  }
  
  p.red {
    color: red;
  }
  
  fieldset {
    border: medium none;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
  }
  .main input[type="text"] {
    width: 408px;
    border: 1px solid #ccc;
    background: #fff;
    margin: 0 0 5px;
    padding: 10px;
  }
  
  .main input[type="text"]:hover {
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
  }
  .main button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: rgb(255, 61, 85);
    color: #fff;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
  }
  
  .main button[type="submit"]:hover {
    background: rgb(214, 13, 13);
    transition: background-color 0.3s ease-in-out;
  }
  
  .main button[type="submit"]:active {
    background: rgb(255, 61, 85);
  }