body {
    background-image: url('assets/dekatten.jpg');
    background-repeat: repeat;
    background-position: center center;
    background-size: 40%;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #000000;
}

.container {
    width: 800px;
    max-width: 100%;
    background-color: white;
    box-shadow: 0 0 20px black;
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

h1 {
    color: black;
    margin-bottom: 36px;
    font-size: 60px;
    font-family: sans-serif;
}

.tekst {
    font-size: 28px;
    margin-bottom: 50px;
    color: black;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.links a {
    display: inline-block;
    padding: 12px 25px;
    background-color: royalblue;
    color: white;
    border-radius: 5px;
    transition: background-color 0.5s;
    font-weight: bold;
    min-width: 200px;
}

.links a:hover {
    background-color: blue;
}

.links a.registreer-link {
    background-color: green;
}

.links a.registreer-link:hover {
    background-color: darkgreen;
}

.links a[style="background-color:#ff0000;"] {
    background-color: #dc3545 !important;
}

.links a[style="background-color:#ff0000;"]:hover {
    background-color: #c82333 !important;
}

.inloggen {
    font-size: 1.1em;
    margin-top: 30px;
}