body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    background: #ffffff
}

header {
    text-align: center;
    padding: 10vw;
    font-family: sans-serif;
    background-image: url('photos/home.jpg');
    background-size: 100%;
    background-position: 100%;
    background-size: cover;
}

.mapbox {
    margin-top: 2rem;
    background: white;
    width: auto;
    max-width: auto;
    margin-left: 200px;
    margin-right: 200px;
    margin-top: -200px;
    box-shadow: 5px 5px 50px 5px rgba(0,0,0,.2);
    text-align: center;
}



.marker {
    position: absolute;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background-color: red;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid rgb(255, 255, 255)
}


.map {
    width: 100%;
    display: block;
    padding:0px;
}

main {
    padding-top: 2rem;
}

.popup {
    display: none;
    width: 50px;
    transform:translate(-40%, -110%)
}

.marker:hover > .popup{
    display:block;
}

.mapcontainer {
    position: relative;
    width: 800px;
    margin: 0 auto;
}