body {
    font-family: 'Saira', sans-serif;
    background: linear-gradient(180deg, #FFD59E 0%, #FFC481 100%);
    margin: 0;
    padding: 0;
    color: #2C2C2C;
}

/* Hoofdlayout */
#Main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

/* Kopteksten */
h1 {
    background-color: #90AADB;
    color: white;
    padding: 20px 40px;
    border-radius: 40px;
    text-align: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    letter-spacing: 1px;
}

h2 {
    font-size: 1.5rem;
    color: #2C2C2C;
    margin-bottom: 10px;
}

/* Tekstgedeelte */
#info2 {
    max-width: 600px;
    background: white;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    margin: 30px 0;
    line-height: 1.6;
}

p {
    color: #444;
}

/* Terugknop */
.Button {
    display: inline-block;
    background-color: #90AADB;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.Button:hover {
    background-color: #6C8EDB;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}