:root {
    --color-primary: #fcfcfc;
    --color-primary-alpha: #ffffff36;
    --color-secondary: rgb(3, 3, 3);
    --color-accent: rgb(245, 243, 156);
}

/* @font-face {
    font-family: "Onest";
    src: url("assets/font/Onest-VariableFont_wght.ttf");
} */

html,
body {
    scroll-behavior: smooth;
    background-color: var(--color-primary);
}

body {
    margin: 0;
    font-family: "Onest";
    color: var(--color-secondary);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.flag-container {
    height: 18px;
    display: flex;
    justify-items: center;
    align-items: center;
}

.flag-container img {
    height: 100%;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.container {
    max-width: 1000px;
}

h1 {
    font-size: 20px;
    font-weight: 200;
    line-height: 1em;
    mix-blend-mode: difference;
    color: var(--color-primary);
}

h2 {
    margin: 0;
    font-weight: 200;
    font-size: 30px;
}

p {
    line-height: 40px;
    font-size: 30px;
    font-weight: 100;
    margin: 20px 0;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

a {
    position: relative;
    text-decoration: none;
    color: inherit;
    font-size: 20px;
    font-weight: 100;
}

a.link:before {
    content: "> ";
}

a.link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background: black;
    transition: width .4s ease-in-out;
    width: 0px;
}

a.link:hover:after {
    width: 100%;
}

.border-bottom {
    border-bottom: solid 1px var(--color-secondary);
}

footer {
    bottom: 0;
    left: 0;
    right: 0;
    margin: 20px;
    background: var(--color-primary);
}