
/*@font-face {
    font-family: 'MercuryTextG1-Roman';
    src: url('../font/MercuryTextG1-Roman.otf');
}*/

* {
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    margin: 0;
    padding: 0;
    /*font-family: 'MercuryTextG1-Roman';*/
    font-family: 'STIX Two Text', serif;
    overflow: hidden;
    background-color: black;
}
header {
    position: absolute;
    top : 0;
    left: 0;
    z-index: 100;
    font-size: 24px;
    color: white;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
header h1 {
    padding: 10px;
    margin: 0;
    font-size: 1.6rem;
    color: white;
    font-weight: normal;
    line-height: 1;
}
#about {
    padding: 10px;
    font-size: 1.6rem;
    color: white;
    text-decoration: none;
    text-align: right;
    display: block;
    line-height: 1;
}
#about-page {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 100vh;
    background: black;
    /*justify-content: center;
    align-items: center;*/
    display: none;
    color: white;
    padding: 10px;
    line-height: 1.2;
    font-weight: normal;
    font-size: 1.6rem;
    padding-top: 50px;

}
#about-page.visible {
   /* display: flex; */
   display: block;
}
.info-lang {
    display: flex;
    font-size: 1rem;
}
.info-lang div:first-child {
    margin-right: 10px;
}
.info-lang div:last-child {
    margin-left: 10px;
}
.info-lang p {
    line-height: 1.3;
}
.contact {
    display: flex;
    flex-wrap: wrap;
}
.contact p {
    font-size: 1rem;
    text-transform: uppercase;
    margin-right: 40px;
}
.contact a {
    font-style: italic;
    color: white;
    text-decoration: none;
}
#gallery .item{
    width: 100%;
    height: 100vh;
}
#gallery img, #gallery video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
@media (max-width: 768px) {
    header h1 {
        padding: 10px 10px;
    }
    #about {
        padding: 10px 10px;
    }
    #about-page {
        font-size: 1.5rem;
        padding: 40px 10px;
        overflow-y: auto;
        justify-content: normal;
        align-items: normal;
    }
    .info-lang {
        display: block;
    }
    .info-lang div {
        margin-right: 0!important;
        margin-left: 0!important;
    }
}