/* Algemene stijl */
body {
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(135deg, #ffcf71, #ff9a9e);
    margin: 0;
    padding: 40px;
    text-align: center;
    color: #333;
}

/* Titel Eddy */
h1 {
    font-size: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

/* Subtitel */
h2 {
    font-size: 2rem;
    margin-top: 40px;
    color: #fff;
    background: rgba(0,0,0,0.2);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 12px;
    backdrop-filter: blur(4px);
    animation: popIn 0.7s ease-out;
}

/* Afbeelding */
img {
    width: 250px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Paragraaf */
p {
    font-size: 1.3rem;
    color: #fff;
    background-color: rgba(0,0,0,0.2);
    padding: 10px 25px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 20px;
    animation: fadeInUp 1s ease-out;
}

/* Animaties */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
