  html {
    /* Info: 1rem === 10px */
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
  }
  body {
    font-size: 1.8rem;
    background-color: #f9fdfa;
    font-weight: 400;
    line-height: 1.4;
  }
main {
    max-width: 990px;
    margin: auto;
}  
section {
    min-height: 100vh;
}
h1 {
    font-size: 6rem;
    margin-bottom: 0;
  }
h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    margin-top: 2em;
  }
h3 {
    font-size: 2rem;
    margin-bottom: 0;
    text-align: center;
  }
#navbar {
    display: flex;
    justify-content: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:#606060;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
    z-index: 10;
  }
#navbar > ul {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    }
#navbar > ul li a {
    color:#eee;
    display: block;
    padding: 4px 12px;
    text-decoration: none;
   }
#navbar > ul li a:hover {
    color: #cfcece;
    }

#welcome-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

#embrace {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 8rem;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 6rem;
    text-align: left;
}
#embrace img {
    width: 100%;
}
#embrace article  h3 {
    color: #030303;
    background-color: #606060;
    font-weight: bold;
    margin: 1em 0em;  
    border-radius: 50px;
}
#embrace article h3 a {
    color: #fff;
    text-decoration: none;
}
#embrace article h3 p {
    line-height: 130%;
}
#contact {
    text-align: center;
    background-color:#606060 ;
}
#contact ul li {
    list-style: none;
}
#contact img {
    max-width: 4rem;
    max-height: 4rem;
    filter: invert(100%) sepia(1%) saturate(983%) hue-rotate(184deg) brightness(118%) contrast(100%);
}

#contact a {
    text-align: center;
    padding: 4rem;
    color:#eee ;
    display: block;
    text-decoration: none;
}
#contact > ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    }

#contact > ul li a:hover {
    color:#fff;
    }

/* form */
 form {
    max-width: 960px;
    margin: auto;
    text-align: left;
    }

fieldset {
      border: none;
      padding: 2rem 0;
      margin: 1.6rem 0;
    }
 
legend {
      font-weight: bold;
      font-size: 6rem;
    }
label {
font-size: 2rem;
   display: block;
   margin: 0.5rem 0;
   margin-bottom:0.4rem;
    }
 select, input[type=text],input[type=tel], input[type=email]   { 
      border: 1px solid #606060;
      padding: 0.8rem;
      height: 4rem;
      width: 100%;
      margin-bottom: 0.8rem;
      border-radius: 0.8rem;

    }
    textarea {
      min-height: 120px;
      width: 100%;
      padding: 0.8rem;
      margin-bottom: 0.8rem;
      border-radius: 0.8rem;
    }
    
    button {
      border: none;
      display: block;
      width: 100%;
      padding: 0.75rem;
      border-radius: 2px;
      height: 4rem;
      cursor: pointer;
      margin-top: 2rem;
    }    

  @media (max-width: 400px) {
    #contact > ul {
        flex-direction: column;
        }
    }
