* {
    box-sizing: border-box; /* fir een generellen padding a border fir 'alles' op menger website op der page*/
}
body {
    font-family: "Inclusive Sans Variable", sans-serif;
    background-color: var(--background);
    font-size: 1.25rem;
}

header {
    top: 0;
    padding: 0rem;
    background-color: white;
    /*color: black;*/
    /*backdrop-filter: blur(0.5rem); */
}
main {
    display: flex;
    padding-top: 15rem;
    padding-bottom: 15rem;
}

/* hamburger menu*/
.hamburger {
    position: relative;
    z-index: 3;
    width: 2rem;
    height: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: black;
}
dialog[popover] {
    margin: 0;
    inset: 0;
    width: 100vw;
    height: 100vh;

    border: none;
    padding: 2rem;
    background-color: #111;
    color: white;

    display: none;

    animation: fade-in 300ms ease;
}

dialog:popover-open {
    display: grid;
    align-content: center;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.top,
.bottom {
    display: flex;
    justify-content: left;
    /*position: fixed;*/
    height: 5vh;
    background-color: var(--background);
    overflow: clip;
    z-index: 1;
}

/* uewen */
.top {
    top: 0;
    align-items: end;
}

.top a {
    translate: 0 2rem;
}

/* ënnen */
.bottom {
    top: 50vh;
    align-items: start;
}

.bottom p {
    translate: 0 -2rem;
}

.top a,
.bottom p {
    margin: 0;
    font-weight: bolder;
    font-size: 4rem;
    line-height: 4rem;
}
nav {
    display: flex;
    justify-content: flex-end;
    padding: 0rem;
}
.nav-list {
    list-style: none;
    display: flex;
    justify-content: right;
    gap: 1rem;
    margin: 0;
    padding: 0;
}
.nav-list a {
    text-decoration: none;
}
ul {
    list-style: none;
}
a {
    color: orange;
    text-decoration: none;
}
@media screen and (width <= 40rem) {
    header nav {
        display: none;
    }
    main {
        padding-top: 10rem;
        padding-bottom: 15rem;
    }
}

@media screen and (width > 40rem) {
    .hamburger,
    dialog {
        display: none;
    }
}
