:root {
  --red: hsl(0, 0%, 0%);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.container {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-clip {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    margin: 0;
    padding: 0;
    background: #000; /* voorkomt witte randen bij laden */
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.content h1 {
    color: #fff;
    font-size: 3em;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px #000;
}

.content a {
    font-size: 1.2em;
    color: #fff;
    background: #000;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 15px 30px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 2px 8px #000;
}

.content a:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}