/* Algemene stijl */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1f004d, #b80040);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    max-width: 800px;
    width: 90%;
    padding: 20px;
}

/* Content-box stijl */
.content-box {
    background-color: rgba(0, 0, 0, 0);
    padding: 30px;
}

/* Titel stijl */
h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Tekst stijl */
p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 30px;
}

/* Start-knop stijl */
.start-button {
    display: inline-block;
    padding: 10px 50px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #e60026;
    border: none;
    border-bottom-right-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
}

.start-button:hover {
    background-color: #c5001f;
}
