body{
    font-family: arial,helvetica;
    text-align:center;
    /* scale: 1.2; */                 /* Does not work on mobile */
}
h1{
    font-size: 6em;
    font-size: calc(2em + 2vw);
    margin:0;
    text-shadow: 0px 0 17px rgba(0,0,0,0.8);
}
/* Backgrounds will cover all the section */
.section,
.slide{
    /* Important! Videos use absolute */
    position: relative;
    background-size: cover;
    /* Making sure videos won't overflow */
    overflow: hidden;
}

.fp-watermark {
    left: 0;
    width: 90vw;
}

/* Styling Our Menu */
#menu{
    position:fixed;
    top:0;
    left:0;
    height: 50px;
    z-index: 70;
    width: 100%;
    padding: 0;
    margin:0;
    padding-bottom: 7px;
    background: black;
}

.menubutton li
{
    display:inline-block;
    margin: 10px;
    color: #000;
    background: rgba(255,255,255, 0.5);
    border-radius: 10px;
}

.menubutton li:hover{
    background: rgba(255,255,255, 0.8);
}

.menubutton li.active,
.menubutton li.active:hover{
    background: rgba(0,0,0, 0.5);
}

.menubutton li a{
    text-decoration:none;
    color: #000;
    padding: 9px 18px;
    display:block;
}

.menubutton li.active a,
.menubutton li.active:hover a:hover{
    color: #fff;
}


.overlay-video{
    position: absolute;
    right: 0;
    bottom: 0;
    top:0;
    right:0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black; /* in case the video doesn't fit the whole page*/
    background-image: /* our video */
    background-position: center center;
    background-size: cover;
    object-fit: cover; /*cover video background */
    z-index: -100;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
 /* Layer with position absolute in order to have it over the video */
#address-video .layer{
    /*
        * Preventing flicker on some browsers
        * See http://stackoverflow.com/a/36671466/1081396  or issue #183
       */
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

#address.layer {
    background: rgba(255,255,255, 0.2);
    padding: 18px;
}

#address.layer a {
    text-decoration: none;
    color: white;
    
}

a.emaillink::before {
    content: "📧\00a0";
    font-size: 60%;
}

a.phonelink::before {
    content: "℡\00a0";
    font-size: 60%;
}

a.postallink::before {
    content: "📯\00a0";
    font-size: 60%;
}
/* a[href^="mailto:"]::after { */
#leaflet-map {
    background: black;
}


#address {
    color: #fff;
    position: absolute;
    left: 3vw;
    bottom: 3vh;
    font-size: calc(1em + 1.4vw);
    white-space: pre-line;
    text-align: left;
}

#fullvideo {
    position: absolute;
    right: 10px;
    bottom: 0;
}

/* Leaflet map styling */
.overlay-map {
    position: absolute;
    left: 5vw;
    right: 5vw;
    top: 50px;
    /* Leaflet needs a determined height to render */
    height: 95vh;
}


/* Calendar part styling */
#open-web-calendar {
    position: absolute;
    top:50px;
    left:0;
    right:0;
    width: 100vw;

    height: 95vh;
}
