.knop {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 10px;
    max-width: 300px;
    font-size: medium;
    background-color: #d1e0ef; 
    color: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    color: #333;
}

.link-image:hover {
    transform: scale(0.85);
    transition: transform 0.5s ease;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 30px;
    background-color: #d1e0ef;
    padding: 10px;
    font-size: 18px;
    width: 100%;
}

.navbar a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #007bff;
    transform: scale(1.20);
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

header img {
    max-width: 500px;
    border-radius: 15px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #d1e0ef;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

main p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    align-items: center;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}