body, html{
    margin:0;
    width:100%;
    height:100%;
    background-color: #292929;
    font-family: sans-serif;
}
.flex-container{
    display:flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}
.fullscreen{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
.marker{
    color:black;
}
#hint-container{
    position: absolute;
    background-color: gray;
    top:0;
    right:0;
    color:white;
    padding:10px;
}
#hint-text{
    padding-top: 20px;
}

#map{
    width:100%;
    height:100%;
}
#skip{
    position: absolute;
    top:0;
    left:0;
    padding:10px;
    background-color: gray;
    color:white;
}
#infobox{
    position: absolute;
    bottom:0;
    left:30%;
    width: 40%;
    padding:10px;
    background-color: red;
    color:white;
    display: none;
}
@media screen and (orientation:portrait) {
    .map-size{
        width: 100%;
        height:auto;
    }
}
/* Landscape */
@media screen and (orientation:landscape) {
    .map-size{
        height: 100%;
        height:auto;
    }
}
