/* Resets */
a {
    text-decoration: none;
    color: black;
}

/* Behaviour */
body > header .active {
    text-decoration: underline;
}

/* Styling */

h1 {
    margin-top: 2rem;
    font-size: 2.125rem;
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

html {
    font-family: "Arimo", sans-serif;
}

body > header {
    background-color: #DFECDE;
    padding: 1rem;
    position: relative;
}

#headerShape svg {
    content: "";
    position: absolute;
    top: 0;
    left: 65%;
    transform: translateX(-65%);
    height: 86px;
}

#container {
    display: flex;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    align-items: center;
    width: 97%;
    margin-left: auto;
    margin-right: auto;
}

#headerLogos {
    margin-left: 0.5rem;
}

#headerLogos img {
    width: 7rem;
}

#container nav {
    display: flex;
    align-items: center;
}

#container nav ul {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 25px;
    margin-right: 1rem;
}

#container nav a {
    padding: 14px 10px;
    line-height: 12px;
    font-weight: 600;
    font-size: 1rem;
}

#lang-switch {
    display: flex;
}

#lang-switch a {
    padding: 0;
    margin-left: 10px;
}

.button {
    color: black;
    width: 11rem;
    display: inline-block;
    border-radius: 25px;
    border: 1px solid black;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.button:hover {
    background-color: black;
    color: white;
}