html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    overflow-x: hidden;
    background-color: black;
}

body::-webkit-scrollbar {
    display: none;
}

/* Navigatie */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 65px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.navbar a {
    font-family: "Exo",
        sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.navbar h1 {
        font-family: "Exo",
        sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    text-decoration: none;
    font-size: 15px;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

/* Hero */
.hero {
    height: 50vh;
    background-color: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.hero-content {
    max-width: 75%;
    z-index: 1;
}

.hero h2 {
    font-family: "Exo",
        sans-serif;
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 3.5rem;
    margin-top: 400px;
}

.back-button {
    display: inline-block;
    margin: 100px auto 50px auto;
    text-align: center;
    background-color: rgb(30, 30, 30);
    color: rgb(255, 255, 255);
    font-family: "Exo", sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    width: fit-content;
}

.back-button:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

html {
    scroll-behavior: smooth;
}