
@font-face {
    font-family: "Oswald";
    src: url("../assets/fonts/OswaldBold.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}
  
html {
    height: 100%;
    margin: 0;
}

body {
    text-align: center;
    height: 100%;
    margin: 0;
    display: flex; 
    flex-direction: column; 
}

.page {
    height: 200%; /* For background color until the end in some portrait modes */
}

.page#map {
    font-family: Oswald;
    color: #000;
    background-color: #d2cdca;
}

.page#links {
    font-family: "Open Sans", sans-serif;
    color: #FFF;
    background-color: #ac9b93;
}

.page#links h2 {
    font-size: 3.6vh;
    margin: 2vh 0 2vh;
}
.page#links h4 {
    font-size: 1.8vh;
    margin: 1vh 0 2vh;
}

.color-primary {
    color: #4e946e;
}

a {
    text-decoration: none;
}


#links-container {
    margin: 3vh 0 6vh;
    position: relative;
    display: block;
}

#links-container .link {
    font-size: 16px;
    padding: 18px 10px;
    color: #888888;
    display: block; 
    width: 90%;
    max-width: 600px;
    margin: 1.5vmax auto;
    background-color: #FFF;
    border: 2px solid #FFF;
    text-align: center;
    transition: all 0.5s ease-in-out;
}
#links-container .link:hover {
    color: #FFF;
    background-color: #ac9b93;
}

#vegan-tourist-paris-logo {
    width: 12vmax;   
    height: 12vmax;
    border-radius: 100%;
}

#language {
    position: absolute;
    top: 10px;
    right: 15px;
}
#language img {  
    width: 3vmax;
    min-width: 40px;
}

#top a {
    vertical-align: middle;
}
#top .logo {
    vertical-align: middle;
}

#slideshow-container {
    position: relative;
    /* margin-top: 25px; */
    display: block;
    min-height: 100vmin;
}
#slideshow {
    background-color: #000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#slideshow-pictures {
    background-color: #d2cdca;
    width: 100%;
    height: 100%;
    opacity: .4;
    text-align: left;
}
#slideshow-pictures img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 2s;
}
#slideshow-pictures img.hide {
    opacity: 0;
}
#slideshow .text {
    position: absolute;
    /* margin-top: -15vmax; */
    margin-top: -25vmax;
    text-align: center;
    z-index: 1;
    font-size: 4vw;
    color: #FFF;
    width: 100%;
}
#slideshow .button-container {
    position: absolute;
    width: 100%;
    z-index: 1;
}
#slideshow .button {
    display: inline-block;
    cursor: pointer;
    position: relative;
    text-align: center;
    margin: 0 auto 0;
    padding: 13px 22px;
    box-shadow: 5px 5px 15px #00000088;
    border-radius: 5px;
    font-size: 4vw;
    color: #FFF;
    background-color: #4e946e;
    transition: background-color .5s, box-shadow .5s;
}

#slideshow .button:hover {
    box-shadow: 5px 5px 25px #00000088;
    background-color: #68c190;
}

#slideshow .alt-button {
    display: inline-block;
    cursor: pointer;
    position: relative;
    text-align: center;
    margin: 10px auto 0;
    padding: 13px 22px;
    box-shadow: 5px 5px 15px #00000088;
    border-radius: 5px;
    font-size: 3.7vw;
    color: #4e946e;
    background-color: #FFF;
    transition: background-color .5s, box-shadow .5s;
}

#slideshow .alt-button:hover {
    box-shadow: 5px 5px 25px #00000088;
    background-color: #dbfdea;
}


.page#map h3 {
    color: #242424;
    font-weight: 700;
    font-size: 36px;
}

.page#map h4 {
    color: #242424;
    font-size: 18px;
}

#excel-file-link {
    border-width: 2px;
    border-style: solid;
    border-color: #a0a0a0;
    background-color: rgba(102,68,59,0.5);
}

#external-links {
    margin-top: 30px;
    padding-bottom: 50px;
}
.external-link {
    text-decoration: none;
    opacity: .8;
    transition: opacity .3s;
}
.external-link:hover {
    opacity: 1;
}
.external-link img {
    width: 44px;
    height: 44px;
}



#footer {
    margin-top: auto;
    line-height: 40px;
    width: 100%;
}
#footer .copyright {
    display: inline-block;
    padding-left: 40px;
}
#footer a {
    float: right;
}
#footer a svg {
    width: 40px;
}

@media (orientation: portrait) and (max-width: 1200px) {
    #links-container .link {
        font-size: 2em;    
        max-width: 800px;
    }

}