body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('aquarell.jpg') no-repeat center top;
    background-size: cover;
    color: #333;
}

.header {
    text-align: center;
    padding: 40px 20px;
}

.portrait {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 10px solid white;
    box-shadow: 0 0 25px rgba(0,0,0,0.25);
    display: block;
    margin: 0 auto;
}

h1 {
    margin-top: 20px;
    font-size: 28px;
    color: #222;
}

h2 {
    font-size: 18px;
    color: #b07a4a;
    margin-top: 5px;
}

.contact-box {
    background: white;
    padding: 20px;
    margin: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    padding: 14px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

.green {
    background: #6bbf6b;
    color: white;
}

.white {
    background: #f5f5f5;
    color: #333;
}

.about {
    text-align: center;
    padding: 20px;
}

.about h3 {
    color: #b07a4a;
    font-size: 20px;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.logo {
    width: 80px;
    opacity: 0.8;
}
#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.intro-logo {
    width: 180px;
    opacity: 1;
}


