#homepage header {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    padding-top: 40px;
}
#homepage header > h1{
    font-size: 2.667rem;
}
#homepage header > img{
    height: 48px;
}
#homepage article > a {
    border-radius: 100px;
    background: #006400;
    border-width: 0;
    padding: 11px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: all 100ms ease-in;
    text-align: center;
    text-decoration: none;
}
#homepage article > a:hover {
    background: #003c00;
}
.articles {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 25px 65px 65px;
    gap: 0 24px;
}
.articles article {
    width: 345px;
    display: flex;
    flex-direction: column;
    gap: 19px 0;
}
.articles article:not(:nth-child(2)) {
    margin-top: 40px;
}
.articles article h2 {
    font-size: 32px;
}
.articles article a {
    color: #fff;
}
@media (max-width: 768px) {
    .articles {
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    #homepage header > h1{
        font-size: 1.4rem;
    }
    #homepage header > img{
        height: 40px;
        float: left;
    }
}
.contactinfo ul{
    list-style: none;
    padding: 0;
}