
header {
    background: linear-gradient(to right, #99e8a8, #f8fd63);
    color: black;
    padding: 10px;
    border-radius: 15px;
    position: fixed; 
    z-index: 1000;

}

header ul {
    display: flex; 
    list-style: none; 
    padding: 0;
    margin: 0;
}

header ul li {
    margin-right: 20px; 
}

header ul li a {
    text-decoration: none; 
    color: black; 
    font-weight: bold;
}

body {
    background-color: #01052a;
    color: white;
}

.hero-header {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: relative; 
}

.hero-header img {
    max-width: 100%; 
    height: auto;
    z-index: -1;
}

.hero-text {
    position: absolute; 
    right: 20px; 
    top: 75%; 
    transform: translateY(-50%); 
    font-size: 5vw;
    color: white; 
    text-align: right;
}

.informatie, .regels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center; 
    text-align: center; 
}

.informatie h2, .regels h2 {
    grid-column: span 3; 
    text-align: center; 
}

.regels {
    background-color: #68c6e9;
}

.item {
    text-align: center;
}

.icon {
    width: 20vw;
}

div {
    border-radius: 15px;
}

button {
    background: linear-gradient(to right, #99e8a8, #f8fd63);
    color: black;
    border-radius: 15px;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

input {
    border-radius: 15px;
    padding: 5px;
    border: 1px solid #ccc;
}

table {
    border-collapse: collapse;
    width: 100%;
    color: white;
}

table th, table td {
    border: 1px solid white;
    padding: 8px;
    text-align: left;
}
.delete{ 
    color: rgb(173, 238, 230);
    text-decoration: none; 
}
.button{
    background: linear-gradient(to right, #99e8a8, #f8fd63) !important;
    color: black !important;
    border: none !important;
    padding: 10px 20px !important;
    cursor: pointer !important;
}
form{
    display: flex;
    flex-direction: column;
    align-items: left;
    background-color: rgba(148, 148, 148, 0.351);
    width: 45vw;
    padding: 10px;
    border-radius: 15px;
    position: absolute; 
    margin-top: 100px;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}
.header-pages-text{
    text-align: center;
}