
:root {
    --dark: #202020;
    --light: #ffffe0;
    --primary : #9eb9d4;
    --secondary: #6f4e37;
    --white: #e6e6e6;
    --nav-height: 5rem;
    --footer-height: 3rem;
}

hr {
    max-width: 70%;
    margin: auto;
    margin-block: 1rem;
}


* {
    padding: 0;
    margin: 0;
}

body {
    font-family: Verdana, Geneva, sans-serif;
}

nav {
    width: 100%;
    min-height: var(--nav-height);
    background-color: #ffff;
    color: var(--dark);
    position: sticky;
    top: 0;
    z-index: 20;
}

a {
    color:rgb(32, 32, 32);
}

ul.nav-items {
    list-style-type: none;
}

.nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
}

.nav-item-label {
    font-size: 18px;
}

.nav-item-label:hover {
    text-decoration: underline solid rgb(32, 32, 32);
}

.lang-select {
    width: fit-content;
    margin-right: 2rem;
    padding-top: 1rem;
    margin-left: auto;
    font-size: x-large;
    position: relative;
    min-height: 2rem;
}

.logo {
    font-size: 28px;
}

.logo:hover {
    text-decoration: none;
}

main {
    line-height: 1.6;
    margin: auto;
    max-width: 100rem;
    overflow: hidden;
    min-height: calc(100vh - var(--nav-height) - var(--footer-height));
}


footer {
    background-color: var(--dark);
    height: var(--footer-height);
    color: var(--white);
    position: relative;
}

.copyright {
    float: right;
    height: 100%;
    padding-inline: 2%
}

.copyright p {
    margin-block: 5%;
    text-wrap: nowrap;
}