@font-face {
    font-family: 'lobster';
    src: url(../fonts/KaushanScript-Regular.ttf);
}






body{
    background-color: #DEB697;
    font-family: lobster;
}
.ontwerp{
    font-size: 30px;
}
.infoblok{
    background-color: #D9D9D9;
    display: flex;
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 10px;
    height: 6vh;
    width: 40vw;
    margin: auto;
    align-items: center;
    justify-content: space-around;
}
.knoppen{
    display: flex;
    justify-content: space-between;
}
a{
    color: black;
    text-decoration: none;
    padding: 10px;
}
a:hover{
    color: #ff0000;
    border-radius: 20px;
}
.container {
    margin: 50px auto;
    max-width: 800px;
    padding: 20px;
    background-color: #D9D9D9;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
form {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form textarea,
form input[type="file"] {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form input[type="submit"] {
    background-color: #FF6F61;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}

form input[type="submit"]:hover {
    background-color: #e65c50;
}
.registerbutton{
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    margin: auto;
    margin-bottom: 30px;
}
.registerbutton a{
    color: rgb(0, 26, 255);
    text-decoration: none;
    padding: 10px;
}
#password{
   width: 100%;
   height: 40px;
}

@media (max-width: 768px) {
    .berichtblok {
        flex-direction: column;
        width: 90%;
        height: auto;
    }
    .textblok {
        width: 90%;
        height: 90%;
    }
    .text-image {
        flex-direction: column;
        align-items: center;
    }
    .imagesize {
        width: 60%;
        height: auto;
        justify-content: center;
    }
    .ontwerp{
        font-size: 20px;
    }
    .welkom {
        font-size: 28px;
    }
    .infoblok {
        width: 80vw;
        height: 10vh;
        flex-direction: column;
        gap: 10px;
    }
    
}