body{
    height: 100vh;
    margin: 0;
    background-image: linear-gradient(to top, rgb(0, 187, 229), rgb(18, 142, 209));
 
}

h1{
    position: relative;
    top: -60px;
    color: white;
}



nav ul li {
    float: left;
}

nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    background-color: black; /* Kleur verandert bij hover */
}

/* Standaard menu stijl */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #333;
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #111;
}

/* Dropdown stijl */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #575757;
}

.dropdown:hover .dropdown-content {
    display: block;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #87CEEB; /* Light sky blue */
    margin: 0;
    font-family: Arial, sans-serif;
}

.cloud {
    background-color: white;
    width: 300px;
    padding: 20px;
    border-radius: 50% / 30%;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}

.cloud:before,
.cloud:after {
    content: '';
    position: absolute;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}


h2 {
    margin: 0;
    color: #333;
}

p {
    color: #555;
    margin: 5px 0;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Cool animated gradient background */
body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #ececec, #9fd3c7, #385170, #142d4c);
    background-size: 400% 400%;
    animation: gradientBackground 15s ease infinite;
}

/* Keyframe animation for the gradient background */
@keyframes gradientBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Content styling */
.content {
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}