:root{
    --dark-blue: #013095;
    --blue: #0692d9;
    --light-blue: #4083a5;
    --white: #e0e0e0;

    --green: #5c7780;
    
}
/* weight from 300-800 */
.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
*{
    font-family: "Open Sans", sans-serif;
}
body{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 550px;


}
@media (max-width: 600px){
    main{
        width: 90%;
    }
}
main h1{
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    text-wrap: balance;
    line-height: 24px;
    letter-spacing: 0px;
}
main img{
    /* width: 100%; */
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.text{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.text span{
    font-family: "Alegreya Sans SC", "Open Sans", sans-serif;
    text-transform: lowercase;
    font-size: 18px;
    font-weight: 500;
}


footer *{
    --color: var(--light-blue);
    color: var(--color);

    text-align: center;
}
footer{
    padding-top: 70px;
    padding-bottom: 40px;
}

footer .hl{
    width: 100%;
    height: 1px;
    background-color: var(--color);
}
footer h2{
    font-size: 18px;
}
footer h3{
    font-size: 16px;
}
hr{
    /* background-color: transparent; */
    border: none;
    height: 20px;
}

.footer-foot{
    display: flex;

}

.diagram{
    height: 100%;
    
}