:root {
    --box-shadow: 0 1px 6px rgb(32 33 36 / 28%);
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
  }
  
  html {
    font-family: sans-serif;
    font-size: 16px;
  }
  
  body {
    margin: 0;
    padding: 0;
    background-color:rgb(163, 163, 219);
    width: 100%;
  }
  
  header,
  main {
    max-width: 1800px;
    margin: auto;
    text-align: center;
   
  }
  
  img {
    display: block;
    height: auto;
    max-width: 100%;
    transition: transform .3s;
  }
  
  img:hover {
    box-shadow: var(--box-shadow);
    transform: scale(1.2);
  }
  
  input {
    border-radius: .25rem;
    border: 2px solid #e5e5e5;
    display: block;
    font-size: 1rem;
    margin: 1.75rem auto 2.5rem;
    max-width: 100%;
    padding: .7rem;
    width: 480px;
  }
  
  input::placeholder {
    color: #000;
  }
  
  input:hover {
    box-shadow: var(--box-shadow);
  }
  
  .grid {
    display: grid;
    gap: 1rem;
    grid-auto-flow: dense;
    grid-template-columns: repeat(auto-fit, 100px);
    justify-content: center;
    list-style-type: none;
  }
  
  .sr-only {
    clip-path: inset(50%);
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
  }
  
  #info {
    background-color: #ffc107;
    display: inline-block;
    padding: 1rem;
  }
  
  p{
    text-align: center;
  }
  h2 {
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  }
  h1 {
    margin: 15px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center;
  }
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   }
   
   .hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
   }
   .hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
   }
   .hero .hero-text {
    width: 100%;
    height: 100vh;
    display: flex;
    z-index: 1;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   }
   .hero .hero-text h1 {
    color: #FFF;
    font-size: 64px;
    margin-bottom: 20px;
   }
   .hero .hero-text p {
    color: #FFF;
    font-size: 20px;
    margin-bottom: 20px;
   }
   .hero .hero-text a {
    color: #333;
    font-size: 20px;
    background-color: #FFF;
    border: 2px solid #FFF;
    text-decoration: none;
    padding: 10px;
    border-radius: 2px;
   }
   button {
   display: block;
   margin: 0 auto;
   height: 35px;
   background-color: rgb(163, 163, 219);
   color: black;
   font-size: larger;
   font-style: italic;
  
  }
  
  button:hover {
    background-color: greenyellow;
  }
  header {
    width: 100%;
    height: 100px;
    background-color:greenyellow;
    text-align: center;
    position: sticky;
    color: black;
    top: 0;
    overflow: hidden;
    z-index: 1;
    display: fixed;
    
    
   
    
  }
  h3 {
    text-align: center;
  }
  


  @media (min-width: 768px) {
    .grid {
      gap: 55px 60px;
      grid-template-columns: repeat(auto-fit, 200px);
     
      
      
    }}
    