* {    
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
body{
    background-color: #EAEAEA;
    width:100%;
    min-height: 100vh;
}

nav {
    height: 80px;
    background: #00ABB3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem calc((100vw - 1300px) / 2);
    font-size: 17px;
  }
  
  .logo {
    color: #3C4048;
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    padding: 0 2rem;
  }
  
  nav a {
    text-decoration: none;
    color: #3C4048;
    padding: 0 1.5rem;
  }
  
  nav a:hover {
    color: #fff;
  }

h2{
    line-height: 2;
    font-size: 30px;
    text-decoration: underline;
    color: #3C4048;
    margin-left: 50px;
    margin-top: 30px;
    text-align: center;
}

h3{
    font-size: 20px;
    line-height: 1;
    margin-left: 50px;
    margin-top: 30px;
    color: #3C4048;
    font-family: sans-serif;
    margin-left: 80px;
    width: 70%;
}

.container{
    padding: 4rem 1%;
}

.flex{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.card{
    background:#B2B2B2;
    padding: 15px 20px;
    box-shadow: 0 0 3px rgba(0, 0, 0,);
    flex: 1 0 20em;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    font-family: sans-serif;
}
.card h1{
    margin-bottom: 15px;
    text-transform: capitalize;
    color:#3C4048;
    font-size: 2rem;
    font-family: sans-serif;
    margin-left: 80px;
    width: 70%;
}

.card p{
    text-align:left;
    line-height: 150%;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.content p{
    line-height: 1.6;
    font-size: 18px ;
    margin-left: 50px;
    width: 800px;
    margin-top: 30px;
    flex-wrap: wrap;
    font-family: sans-serif;
    margin-left: 80px;
    width: 70%;
}

.footer-distributed {
  background-color: #00ABB3;
  text-align: center;
  position: static;
  bottom: 0;
  width: 100%;
  height: 5em;
  }
  
  .footer-distributed p{
  padding-top:0.5em;
  color: #3C4048;
  font-size: 14px;
  line-height: 5;}