:root {
    --leftRightMargin: 0;
    --footerLeftRightMargin: 20px;
    --videoContainerGap: 20px;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

header .hero {
    display: flex;
    flex-direction: column;
    justify-content: end;
    background-image: url("../images/banner-background.svg");
    background-size: cover;
    background-position-x: 50%;
    background-position-y: 100%;
    height: 400px;
}

header .hero .hero-image {
    max-height: 350px;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.45rem;
    margin-top: 0;
}

h4 {
    font-size: 1.25rem;
}

h1,
h2,
h3,
h4 {
    color: #f07c50;
    padding: 0 20px;
}

h2 span {
    color: #425E7C;
}

p {
    color: #001D1A;
    font-size: 1.1em;
    line-height: 1.4em;
    padding: 0 20px;
}

button {
    font-family: 'new-rubrik-edge', sans-serif;
}

main>div {
    padding: 25px var(--leftRightMargin);
}

main .orange-background {
    background-color: #FBEBE3;
}

main .intro-text-container h1 {
    margin-bottom: 0;
}

main .intro-text-container h2 {
    margin-top: 0;
}

main .illustrations-container .illustration {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

main .illustrations-container .illustration div h2 {
    margin-bottom: 0;
}

main .illustrations-container .illustration div p {
    margin-top: 0;
}

main .illustrations-container .illustration img {
    margin: 25px 0;
    padding: 0 100px;
    max-width: 250px;
    order: -1;
}

main .support-and-help-container {
    background-color: #FBEBE3;
    padding: 20px;
}

main .support-and-help-container h2 {
    margin-bottom: 0;
}

main .support-and-help-container p {
    margin-top: 0;
}

main .support-and-help-container object {
    max-width: 500px;
    cursor: pointer;
}

main .logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 75px;
    margin: 50px 0;
}

main .logo-container a {
    display: flex;
    justify-content: center;
    flex: 1;
}

main .logo-container img {
    max-width: 250px;
}

footer {
    background-color: #F07C50;
    color: white;
    margin-bottom: 40px;
    padding: 20px var(--footerLeftRightMargin) 100px;
    border: none;
}

footer .external-links-text {
    color: #16162F;
    font-weight: bold;
    padding: 0;
}

footer .external-link-container {
    text-decoration: none;
    color: white;
    display: block;
    margin-bottom: 5px;
    width: max-content;
    display: flex;
    gap: 10px;
    align-content: center;
}

footer .external-link-container span img {
    width: 30px;
    margin-top: 5px;
}

footer .external-link-container .external-link {
    text-decoration: none;
    color: white;
    display: block;
    margin-bottom: 5px;
    width: max-content;
}

footer .external-link-container .external-link:hover {
    text-decoration: underline;
}

div.disclaimer {
    display: flex;
    justify-content: center;
    margin: 50px;
    color: #001D1A;
}

div.disclaimer a {
    text-decoration: none;
    color: #343434;
}

div.disclaimer a:hover {
    text-decoration: underline;
}