

* {
    box-sizing: border-box;
  }


article > h3 > a {
    color: var(--peri)
}

article > p > a {
    color: var(--peri)
}

article > h3 > a:hover {
    color: var(--slateBlack);
}

article > p > a:hover {
    color: var(--slateBlack);
}

 h2 {
    font-family: "Ubuntu";
    font-size: 2vw;
    color: var(--peri);
    text-align: center;
 }

 h3 {
    font-family: "Ubuntu";
    font-size: 1.5vw;
    font-weight: bold;
    color: var(--gray);
}

li {
    font-family: "Lora";
    font-size: 1.5vw;
    color: var(--gray);
    margin: 0 0 1vw 2vw;
    
}

p {
    font-family: "Lora";
    font-size: 1.5vw;
    color: var(--gray);
    margin-bottom: 1vw;
}


.article_01_heroContainer {
    height: 50vh;
}

    .article_01_heroContainer > img {
        width: 100vw;
        max-width: 100%;
        height: 50vh;     
        object-fit: cover;
    }

    .article_01_heroTitle {
        position: absolute;
        top: 10%;
        left: 60%;
        font-family: "Ubuntu";
        font-size: 4vw;
        color: var(--gray);
        font-weight: bold;
        text-align: center;
    }

article {
    margin: 2vw 20%;
    font-family: "Lora";
    font-size: 1.5vw;
    color: var(--slateBlack);
    text-align: justify;
}    