body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    text-align: center;
    background: radial-gradient(circle, #db9900, #ffee01);
    color: #333;
}
header {
    background: radial-gradient(circle, #db9900, #ffee01);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
header a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
}
section {
    background: url('../afbeldingen/christ.jpg') no-repeat center/cover;
    padding-top: 15%; 
    height: 100px;
}
 h1 {
    font-family: 'Brasty Vintage', sans-serif;
    font-size: 36px;
    padding: 10px;
}
.content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}
.content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.content p {
    font-family: 'Arial ', sans-serif;
    line-height:30px; 
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}
p {
    font-style: italic;
    padding: 20px;
    background: radial-gradient(circle, #7b5600, #a19700);
    color: white;
    font-size: 18px;
    border-radius: 10px;
}
footer {
    background: radial-gradient(circle, #db9900, #ffee01);
    padding: 10px;
    color: white;
    text-align: left;
}
.social-icons {
    display: flex;
    gap: 10px;
}
.social-icons img {
    width: 30px;
    height: 30px;
}