/*
    SPACING SYSTEM (px)
    2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

    FONT SIZE SYSTEM (px)
    10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

    main colour: #087f5b
    accent-color: #099268
    highlight-color: #e6fcf5
    text-grey: #343a40
    accent-grey: #495057
*/

* {
    margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Inter", sans-serif;
    color: #343a40;
    line-height: 1;
    border-top: 3px solid #087f5b;
}

.container {
    width: 96rem;
    margin: 6.4rem auto;
    padding: 0 4.8rem;
}

.header {
    margin-bottom: 9.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4.8rem;
}

section {
    margin-bottom: 9.6rem;
}

.header img {
    width: 100%;
    border-radius: 12px;
}

.header-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
}

h1 {
    font-size: 4.4rem;
    font-weight: 700;
}

h2 {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 3.2rem;
}

h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

h4 {
    font-size: 2.4rem;
    padding: 1.8rem;
    background-color: #087f5b;
    color: #e6fcf5;
    border-radius: 12px;
    margin-bottom: 1.8rem;
}

p, ul {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

p {
    line-height: 1.6;
}

a:link, a:visited {
    color:#087f5b;
}

a:hover, a:active {
    color: #099268
}

.button:link, .button:visited {
    padding: 1.2rem 2.4rem;
    background-color: #087f5b;
    border-radius: 12px;
    text-decoration: none;
    color: #e6fcf5;
}

.button:hover, .button:active {
    background-color: #099268;
}

.odd-article {
    background-color: #087f5b;
    padding: 2.4rem;
    display: flex;
    gap:3.2rem;
    color: #e6fcf5;
}

.even-article {
    padding: 2.4rem;
    display: flex;
    gap:3.2rem;
    justify-content: space-between;
}

article {
    margin-bottom: 2.4rem;
    border-radius: 12px;

}

.article-title {
    font-size: 3rem;
    margin-bottom: 2.4rem;
}

.article-text {
    margin-bottom: 1.6rem;
}

ul {
    margin-left: 4.8rem;
}

li {
    margin-bottom: 0.8rem;
}

li:last-child {
    margin-bottom: 0;
}

article img {
    width: 100%;
    border-radius: 12px;
}

.margin {
    margin-bottom: 2.4rem;
}