body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #FAF3E0;
}

main {
    text-align: center;
}

.styled-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FF6B6B;
    color: #ffffff;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.styled-button-toets {
    display: inline-block;
    padding: 16px 28px;
    background-color:blueviolet;
    color: #ffffff;
    font-size: 1.6em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.styled-button:hover {
    background-color: #FF4757;
    transform: translateY(-3px);
}

.styled-button:active {
    background-color: #E63946;
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
