body {
    margin: 0;
    padding: 0;
    background-color: #6B8E3D ;
    color: #f4f4f4;
    font-family: "Roboto", sans-serif;
}

a { 
    color: inherit; 
    text-decoration: none;
} 

a:hover{
    text-decoration: underline;
}

.language-switcher {
    text-align: right;
    padding: 10px;
    background-color: #fff;
}

.language-switcher button {
    margin: 0 5px;
    padding: 10px;
    border: none;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
}

.center {
    max-width: 800px;
    margin: 20px auto;
}

.cursive-chinese {
    font-family: "Ma Shan Zheng", cursive;
    font-size: 1.1em;
}

.cursive {
    font-family: "Tangerine", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 1.5em;
}

.monospace {
    font-family: "Source Code Pro", monospace;
}

span {
    white-space: nowrap;
}

.box {
    background-color: rgba(59, 49, 12, 0.7);
    color: white;
    padding: 1em;
    border-radius: 0.2em;
}

h1{
    font-family: "Tangerine", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 5em;
    margin-top: 0;
    margin-bottom: 0.2em;
}

h2{
    font-family: "Tangerine", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 0.2em;
}

#intro {
    padding: 5vh;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
    font-size: 2.5em;

    max-width: 65vh;
    margin: 20px auto;
    margin-top: 60vh;
}

#mapcontainer{
    margin-top: 30vh;
}

#content{
    margin-top: 10vh;
}

#footer {
    margin-top: 10vh;
    width: 90%;
}

#map{
    aspect-ratio : 1 / 1;
}


@supports not (-webkit-touch-callout: none) {
    body {
        background-image:url('photos/20210613_161908_9F620F9C.avif');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
    }

    .ios-bg {
        display: none;
    }
}

/* IOS does not support  background-attachment: fixed; 😤*/
@supports (-webkit-touch-callout: none) {
    .ios-bg  {
        background-image:url('photos/20210613_161908_9F620F9C.avif');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        height: 100vh;
        width: 100vw;
        top: 0;
        position: fixed;
        /* z-index usage is up to you.. although there is no need of using it because the default stack context will work. */
        z-index: -1; 
    }
}