* {    
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
      
    body{
    background-color: #EAEAEA;
    width:100%;
    }
    
    nav {
    height: 5em;
    background: #00ABB3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem calc((100vw - 1300px) / 2);
    font-size: 1rem;
    font-weight: 500;
    }
      
    .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;
    }
    
    h1{
        color: #3C4048;
    }

    h2{ line-height: 160%;
    font-size: 2rem;
    text-decoration: underline;
    color: #3C4048;
    margin-top: 1.5em;
    font-family: sans-serif;
    text-align: center;}

    h3{
        color: #3C4048;

    }
    
    .container{
    padding: 1% 1% 1% 1%;
    display: flex;    
    gap: 1.5rem
    }
    
    .flex{
    display: flex;    
    gap: 1.5rem;
    }
    
    .card{
    background:#B2B2B2;
    padding: 0,5em 2em;
    box-shadow: 0 0 3px rgba(0, 0, 0,);
    flex: 1 0 25em;
    width:5% 5% ;
    display: flex;
    flex-direction: column;
    border-radius: 0,5em;
    align-items: center;
}
    
    .card_content p{
    line-height: 160%;
    font-size: 18px ;
    margin: 5%;
    font-family: sans-serif;
    }
    
    p{
        line-height: 160%;
        font-family: sans-serif;
        color: #3C4048;
    }
    .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;}