/* Style inputs with type="text", select elements and textareas */
html, form{
        font-family: 'Raleway', 'Arial Narrow', Arial, serif;
        text-align: center;
        background-image: url('./background.jpg');
        background-size: cover;
        background-color: rgba(36, 27, 75, 0.479);
        color: white;
        text-transform: uppercase;
        align-items: center;
 
}


input[type=text], select, textarea {
    width: 95%;
    background: transparent;
    text-transform: uppercase;
    color: white;
    margin: 2%;
    padding: 2%;
   border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  input[type=text]:hover, textarea:hover {
    
    background: rgba(38, 49, 73, 0.479);

  }
  
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
      text-transform: uppercase;
    color: white;
    background: rgba(38, 49, 73, 0.479);
    padding: 12px 20px;
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px;
    cursor: pointer;
    margin: 5%;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
      color: white;
      background: rgba(38, 49, 73, 0.7);
    }

    h1{
        padding: 10%; 
        padding-bottom: 0%;
    }
    h6{
        text-transform: lowercase;
        padding-bottom: 10%;
    }
    @media screen and (max-width: 960px){
      html, body{
         background-image: url(./gray-and-white-abstract-painting-4604566.jpg);
      }
    
  
  /* Add a background color and some padding around the form */
