:root {
    --core-color-primary-forest-500: #0F5532;
    --core-color-neutral-white: #FFFFFF;
    --core-color-primary-forest-125: #C3D4CC;
    --core-color-system-orange-500: #DE773F;
    --core-color-system-yellow-500: #FFC84A;
    --core-color-system-green-500: #8BC241;
    --core-color-system-blue-500: #5C7B8C;
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400&display=swap');

.headline-l {
    background-color: var(--core-color-neutral-white);
    color: var(--core-color-primary-forest-500);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    font-size: 64px;
    line-height: 100px;
    margin-left: 50px;
    padding-left: 6px;
    padding-right: 6px;
}

.headline-m {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: normal;
    font-size: 40px;
    line-height: 100px;
}

.heading-5 {
    font-family: 'Info Display', sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 28px;
    margin-top: 50px;
}

.heading-6 {
    font-family: 'Info Display', sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
}

.body-m {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
}

.body-s {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    font-weight: normal;
    line-height: 16px;
}

/* Styling */

body {
    font-family: 'Source Sans Pro', sans-serif;
    padding-bottom: 50px;
}

.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.container {
    display: flex;
    flex-wrap: wrap;
    margin-right: auto;
    margin-left: auto;
    max-width: 1450px;
}

.box {
    flex: 1;
    padding-right: 20px;
}

.logo {
    width: 4.375rem;
    display: inline-block;
    margin-left: 50px;
}

.title {
    background-color: var(--core-color-system-green-500);
}

li {
    margin-top: 20px;
}

.adopt-title {
    color: var(--core-color-system-green-500);
    font-weight: bold;
}

.trial-title {
    color: var(--core-color-system-blue-500);
    font-weight: bold;
}

.assess-title {
    color: var(--core-color-system-yellow-500);
    font-weight: bold;
}

.hold-title {
    color: var(--core-color-system-orange-500);
    font-weight: bold;
}