* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--primary-color);
    color: var(--terciary-color);
    font-family: var(--font-family);
}

:root {
     --font-family:  Arial, Helvetica, sans-serif;
    --font-size-h1: clamp(1.5rem, 4vw, 2rem);
    --font-size-h2: clamp(1.2rem, 3vw, 1.5rem);
    --line-height-h1: clamp(2.5rem, 4vw, 3rem);
    --line-height-h2: clamp(1.8rem, 4vw, 2rem);
    --font-size-p: clamp(1rem, 3vw, 1.15rem);
    --line-height-p: clamp(1.7rem, 3vw, 2rem);
    --cookie-text: clamp(0.70rem, 3vw, 0.85rem);
    --footer-p: clamp(0.50rem, 3vw, 0.65rem);
    --primary-color: #090410;
    --secondary-color: #2700FF;
    --terciary-color: #FFFFFF;
    --quaternary-color: #F5F5F5;
}

p, 
li, 
a, 
strong {
    font-weight: normal;
    font-size: var(--font-size-p);
    line-height: var(--line-height-p);
    color: var(--terciary-color);
    margin-top: 1rem;
}

ul {
    padding-left: 1rem;
}

li {
    margin-top: 1rem;
}

.container {
    width: auto;
    max-width: 800px;
    flex-direction: column;
    padding: 0 20px;
    margin: auto;
    display: flex;
    box-sizing: border-box;
    justify-content: space-between;
}

header .container {
    text-align: center;
}

header img {
    width: 50%;
    height: auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content {
    border: solid 0.2rem var(--secondary-color);
    border-radius: 1.25rem;
    padding: 1rem;
    box-shadow: 0px 4px 10px var(--secondary-color);
    margin-top: 1rem;
}

h1 {
    width: 100%;
    line-height: var(--line-height-h1);
    font-size: var(--font-size-h1);
}

h2 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: var(--line-height-h2);
    font-size: var(--font-size-h2);
}

footer .container {
    text-align: center;
    align-items: center;
    justify-content: center;
}

footer p {
    font-size: var(--footer-p);
    color: var(--quaternary-color);
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--terciary-color);
    padding: 20px 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, .1);
    z-index: 1000;
    display: none;
}

.cookie-banner .container-cookie {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.cookie-banner .container-cookie p {
    color: var(--terciary-color);
    font-size: var(--cookie-text);
    line-height: normal;
    margin-top: 0;
}

.cookie-banner a {
    color: var(--terciary-color);
    font-size: var(--cookie-text);
    line-height: normal;
    margin-top: 0;
}

.cookie-banner button {
    padding: 10px 20px;
    font-size: var(--footer-a);
    font-weight: bold;
    font-family: var(--font-family);
    color: var(--secondary-color);
    background-color: var(--terciary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media screen and (min-width: 744px) {
    header img {
        width: 230px;
    }
}