*{
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
}

.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 930px;
    width: auto;
}

.header{
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    position: relative;
    width: 100%;
    height: auto;
    background: #014380ff;
    text-align: center;
    color: white;
    top: 20px;
}

.header .subTitle{
    position: absolute;
    background: white;
    font-family: monospace;
    width: 100%;
    height: auto;
    text-align: center;
    color: goldenrod;
    top: 80px;
}

.header img{
    position: absolute;
    left: 0px;
    top: 0px;
    height: 90%;
}

.invoeren{
    background: #014380ff;
    color: white;
    padding: 10px;
    border-radius: 20px;
}

.naamInvoer1{
    margin: 10px;
}
.naamInvoer2{
    margin: 10px;
}

.mapContainer{
    position: relative;
    height: 550px;
    width: 550px;
    margin: auto;
    background: goldenrod;
    border-radius: 20px;
    top: 20px;
}
.map{
    cursor: pointer;
    width: 500px;
    height: 500px;
}
.mapContainer .mapFrame{
    position: absolute;
    margin: 0;
    padding: 0;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.prikker{
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.indienen{
    height: auto;
    text-align: center;
    padding: 10px;
    width: 500px;
    background: #014380ff;
    border-radius: 20px;
    cursor: pointer;
    color: white;
    padding: 20px;
    margin: 20px;
}

.reactie{
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    width: 50%;
    background: white;
    color: black;
    transform: translate(-50%, -50%);
    border: #014380ff solid 10px;
    text-align: center;
    padding: 10px;
}

.closeButton{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 30px;
    cursor: pointer;
}

a{
    color: #014380ff;
    font-size: x-large;
    padding: 10px;
    background: white;
}


@media only screen and (max-device-width: 550px){
    .wrapper{
        height: 800px;
    }
    .header img{
        top: 50%;
        width: 10%;
        height: auto;
        transform: translate(0%, -50%);
    }

    .map{
        width: 350px;
        height: 350px;
    }

    .mapContainer .mapFrame{
        width: 350px;
        height: 350px;
    }

    .invoeren{
        text-align: center;
    }

    .indienen{
        width: auto;
    }
    .mapContainer{
        height: 370px;
        width: 370px;
        border-radius: 10px;
    }
    .reactie{
        font-size: smaller;
        width: 90%;
    }
}

@media only screen and (max-device-width: 380px){
    .header img{
        top: 50%;
        width: 10%;
        height: auto;
        transform: translate(0%, -50%);
    }

    .map{
        width: 350px;
        height: 350px;
    }

    .mapContainer .mapFrame{
        width: 350px;
        height: 350px;
    }

    .invoeren{
        text-align: center;
    }

    .indienen{
        width: auto;
    }
    .mapContainer{
        height: 350px;
        width: 350px;
        border-radius: 10px;
    }
}