* {    
    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;
  }

.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;
}
.card h1{
    margin-bottom: 15px;
    text-transform: capitalize;
    color:#3C4048;
    font-size: 2rem;
    font-family: sans-serif;
}

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

.btn{
    display: inline-block;
    text-decoration: none;
    color: #3C4048 ;
    background-color: #EAEAEA;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.5s ease-in-out;
    border-radius: 5px;
    border: 1px solid #3C4048;
    margin: 10px 0;
    margin-top: auto;
    align-self: flex-start;
    font-family: sans-serif;
}

.btn:hover{
    background: transparent;
    color: black;
}

.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;}