:root {
    --background-color: #e7d6c3;
    --text-color: black;
    --bar-color: #bab4a1;
    --line-color: #676059;
    --button-color: #676059;
    --float-button-color: #676059;
    --splash-bg-color: #3f3f3f;
    --footer-bg-color: #3f3f3f;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Hiragino Kaku Gothic Pro', 'WenQuanYi Zen Hei', '微軟正黑體', '蘋果儷中黑', Helvetica, Arial, sans-serif;
}

div {
    font-family: 'Hiragino Kaku Gothic Pro', 'WenQuanYi Zen Hei', '微軟正黑體', '蘋果儷中黑', Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.background {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -100;
    transition: all .5s;
    background-color: rgba(255, 255, 255, 0.1);
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0px 260px;
}

@media only screen and (max-width: 1300px) {
    .wrapper {
        margin: 0px 0px 80px 0px;
    }
}

.header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 0px 20px 0px;
}

@media only screen and (max-width: 1000px) {
    .header{
        justify-content: center;
    }
}

.subheader{
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid lightgrey;
    padding: 10px 0px 10px 0px;
}

.logo-image{
    display: inline-block;
    width: 280px;
}

.nav-bar{
    display: block;
}

.nav-bar-link{
    display: inline-block;
    margin: 10px 20px;
    font-size: 1rem;
    color: #A26F2E;
}

.nav-bar-link:hover{
    text-decoration: underline;
    cursor: pointer;
    font-weight: bold;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    min-height: 600px;
}

.content-title{
    display: flex;
    font-size: 2rem;
    margin: 0px 0px 50px 0px;
    color: #BC804C;
}

.button{
    display: flex;
    padding: 10px 20px;
    background: white;
    cursor: pointer;
    color: #A26F2E;
}







.whatsapp-button {
    display: inline-block;
    border: 5px solid grey;
    border-radius: 20px;
    padding: 8px;
    margin: 10px 0px 0px 0px;
    font-size: 0.9rem;
    font-weight: bold;
    background-color: white;
    color: black;
}

.documentation {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    padding: 10px;
    color: #02556E;
}

.address {
    display: block;
    width: 100%;
    font-size: 1.1rem;
}

.disclaimer {
    display: block;
    width: 100%;
    font-size: 0.8rem;
}

.footer {
    display: block;
    bottom: 0px;
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
}







.edgeButton {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: auto;
    height: auto;
    bottom: 150px;
    right: 0px;
    z-index: 10;
    background: #2C1B16;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    font-size: 1rem;
    padding: 10px 10px 10px 15px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

.edgeButton img{
    display: flex;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.bottomButton {
    display: none;
    position: fixed;
    width: 100%;
    height: 60px;
    bottom: 0px;
    right: 0px;
    z-index: 10;
    background-color: black;
    font-weight: bold;
    color: white;
}

@media only screen and (max-width: 1000px) {
    .bottomButton {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.bottomButton img{
    display: flex;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}