@import url('https://fonts.googleapis.com/css2?family=Monda:wght@400..700&family=Silkscreen&display=swap');

:root {
    --color-light: #909090;
    --color-dark: #212121;
    --color-grey: #6b6b6b;
    --color-white: #dfdfdf;
    --color-black: #000000;
}

* {
    margin: 0;
    border: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Monda", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-decoration: none;
    color: var(--color-white);
}

.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
}

/* TODO maybe we can remove this */
.nav li {
    float: left;
    padding-left: 1.2rem;
    list-style: none;
}

.logo {
    font-family: "Silkscreen", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    line-height: 3rem;
}

body {
    /* background-image: url("/static/images/background.jpg"); */
    /* background-size: cover; */
    background-color: var(--color-black);
}

body>div {
    display: flex;
    flex-direction: column;
    padding: 4rem 4rem;
}

h1,
h2 {
    font-family: "Silkscreen", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
}

p {
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-top: 2rem;
}

a {
    font-size: 1.2rem;
    line-height: 1.6rem;
    margin-top: 2rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    position: relative;
}

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

/* For 4k screens */
@media (min-width: 2000px) {
    body>div {
        padding: 4rem 24rem;
    }
}

/* For mobile screens */
@media (max-width: 960px) {

    body>div {
        padding: 2rem 2rem;
    }

    h1,
    h2 {
        font-size: 2.5rem;
    }

    p,
    a {
        font-size: 1rem;
    }
}