body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('achtergrond.png'); /* Verander 'achtergrond.png' naar de naam van jouw afbeelding */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}
h1 {
    color: #f0f0f0;
    margin-top: 20px;
    font-size: 50px;
}
button {
    width: 400px; /* Vaste breedte van de knop */
    margin: 50px;
    margin-top: 50px;
    padding: 20px 40px;
    font-size: 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    background-color: #348a39;
    color: white;
    transition: background-color 0.3s;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.2s;
}
button:hover {
    background-color: #2c6f2d;
    width: 410px;
    margin: 45px;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(48, 255, 83, 0.219);
}
.top-bar {
    text-align: center;
    background-color: #348a39; /* Donker groene kleur */
    height: 60px;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-top-left-radius: 10px; /* Afgeronde randen linksboven */
    border-top-right-radius: 10px; /* Afgeronde randen rechtsboven */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-top: 20px;
    margin-left: 10%;
    margin-right: 10%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;        }
.top-bar img {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: 10px;
    border-top-left-radius: 10px; /* Afgeronde randen linksboven */
    border-top-right-radius: 10px; /* Afgeronde randen rechtsboven */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all 0.1s;
}

.top-bar img:hover {
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(113, 236, 150, 0.4);
}
.top-bar button {
    margin-right: 15px;
    width: 100px;
    padding: 10px 20px; /* Aanpassen van de padding */
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #8fd19e; /* Licht groene kleur */
    color: white;
    transition: background-color 0.3s;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all 0.2s ;
}
.top-bar button:hover {
    background-color: #6aae7f; /* Donkerder groene kleur bij hover */
    width: 105px;
    height: 45px;
    margin-right: 12.5px;
    color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(145, 92, 182, .4);
}

.small-text {
    font-size: 14px; /* Aanpassen van de lettergrootte voor kleine tekst */
    display: block; /* Op een nieuwe regel weergeven */
}



@media only screen and (min-width: 768px) {
    button {
        padding: 30px 60px;
        font-size: 24px;
    }
}

  
@media only screen and (max-width: 768px) {
    button {
        width: 250px; /* Aanpassen van de breedte van de knop voor kleinere schermen */
    }
    button:hover {
        width: 255px;
        margin: 50px;
    }
    h1 {
        font-size: 24px;
    }
}
