html {
    font-size: 10px;
  }
  
  body {
    background-image: linear-gradient( 89.9deg,  rgba(208,246,255,1) 0.1%, rgba(255,237,237,1) 47.9%, rgba(255,255,231,1) 100.2% );
    font-family: "Roboto", Arial, sans-serif, monospace;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
    background-color: #eeeeee;
    margin: 0;
  }
  
    
  .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  
  
  h1 {
    font-size: 4rem;
    margin-bottom: auto;
  }
  
  @media (max-width: 460px) {
    h1 {
      font-size: 3rem;
      line-height: 1;
    }
  }
  
  p {
    font-size: 3rem;
    margin-bottom: -1;
  }
  
  @media (max-width: 460px) {
    p {
      font-size: 2rem;
      line-height: 1;
    }
  }
  
  
  form {
    max-width: 600px;
    max-height: fit-content;
    background-color: #a5a3a4;
    border: 10px;
    border-color: black;
    border-radius: 5px;
    text-align: left;
    margin: 4px 2px 2px 2px;
    padding: 2.5rem;
  }
  
  input[type="text"],
  input[type="number"],
  input[type="email"] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
  }
  
  fieldset {
    margin: 4px 2px 2px 2px;
    border: none;
  }
  
  select {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    background-color: white;
    margin: 4px 2px 2px 2px;
  }
  
  textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: white;
    margin: 4px 2px 2px 2px;
    resize: none;
  }
  
  button {
    width: 100%;
    background-color: #d1484f;
    border: none;
  
    padding: 16px 32px;
    text-decoration: none;
    margin: 4px 2px 2px 2px;
    cursor: pointer;
  }
  