html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: helvetica;
    margin: 0;
    padding: 0;
}

.mobieltekst {
    display: none;
}

nav {
    height: 100px;
    width: 100%;
    background-color: #282829;
    /* overflow: hidden; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
}

.knoppenbalk {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-shrink: 1;
    gap: 3%;
}

.knoppen {
    font-size: 24pt;
    background-color:#282829;
    width: 250px;
    text-align: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 15px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.knoppen:hover {
    background-color: white;
    color: black;
    transform: scale(1.2); 
    transition: transform 0.3s ease-in-out;

}


nav img {
    width: 50px;
    height: auto;
}

@media (max-width: 768px) {
    .mobieltekst {
        display: block !important;
    }

    .desktoptekst {
        display: none;
    }

    nav {
        height: 80px !important;
    }

    nav img {
        display: none !important;
    }

    .knoppenbalk {
        display: flex;
        justify-content: space-between;
        gap: 0 !important;
    }
    
    .knoppen {
        font-size: 12pt;
        padding: 1%;
        width: fit-content;
    }

    .applelogonav {
        display: none !important;
    }

    .omhoogknopwrapper {
        display: none;
    }

    footer table {
        display: none;
    }
}




.tekstblokken {
    box-shadow: 0 0 20px black;
    transform: scale(1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.tekstblokken:hover {
    transform: scale(1.05); 
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 0 40px black;
}

.omhoogknopwrapper {
    width: 100%;
}

.omhoogknop {
    background-color: #282829;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 28pt;
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.omhoogknop a {
    text-decoration: none;
    outline: none;
}

.omhoogknop:hover {
    transform: scale(1.2);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}


.omhoogknop p {
    color: white;
    text-decoration: none;
    margin-top: 0;
}

footer {
    background-color: #282829;
    font-weight: bold;
    width: 100%;
    margin: 0;
    padding: 0;
}

footer p {
    font-size: 12pt;
    color: white;
    margin: 0;
}

.contactfooter {
    margin-bottom: 3px;
}

footer a {
    text-decoration: none;
    color: white;
}

footer a:hover {
    text-decoration: underline;
}

table {
    margin-bottom: 30px;
    padding-top: 20px;
}

td {
    /* border: 1px solid black; */
    padding-left: 100px;
    padding-right: 100px;
}

.fa-instagram {
    font-size: 50px;
    color: #833AB4;
}

.fa-youtube {
    font-size: 50px;
    color: #FF0000 ;
}

.fa-tiktok {
    font-size: 50px;
    color: black;
}

.fa-facebook {
    font-size: 50px;
    color: #1877F2;
}