/*  Reset */

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}
body{
    background-color: #efefef;
    opacity: 1;
    transition-duration: 0.7s;
    transition-property: opacity;
}
body.fade {
    opacity: 0;
}  
ul, li{
}
a{
    text-decoration: none;
    color: black;
}
iframe{
    border: 0;
}
input {
    border-radius: 0;
    -webkit-appearance: none;
}
:focus{
    border: 0px;
    outline: none;
}
.class-body{
    overflow-x: hidden;
}

/* Logo in apertura*/
#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
#intro-logo {
    max-width: 300px;
    cursor: pointer;
}
#intro.hide {
    opacity: 0;
    pointer-events: none;
}

/* Typography */
@font-face {
    font-family: 'Folio';
    src: url('fonts/KunsthalleWienBeta-Regular.woff2') format('woff2');
}
body, html, h1, h4, ::placeholder, input, button, small{
    font-family: 'Folio';
    line-height: 1.2;
    font-size: 30px;
}
/* Menu */

nav ul {
    display: flex;
    justify-content:space-between;
    width: 100%;
    z-index: 200;
    position: fixed;
    top:0;
}
nav li{
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 1em;
}
.works-container{
    display: grid;
    grid-template-columns: auto auto auto;
    padding-top: 3em;
}
.work{
    text-align: center;
}
.work img{
    width: 100%;
    height: auto;
}
.central-image{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.central-image img{
    height: 100%;
    object-fit: contain;  
}
.title{
    margin-top: 3em;
    padding-left: 1em;
    padding-right: 1em;
}
.product-info{
    padding-left: 1em;
    padding-right: 1em; 
}
.paypal-button{
    margin-top: 1em;
    padding-left: 1em;
    padding-right: 1em; 
    top: 6em;
    z-index: 100;
}
.paypal-button td{
    font-size: 30px;
    z-index: 100;
}
.paypal-button select{
    font-size: 24px;
    margin-bottom: 1em;
    z-index: 100;
}
.about{
    padding-left: 1em;
    margin-top: 3em;
    width: 50%;
}
.about p{
    padding-bottom: 1em;
}

/* Mobile */

@media only screen and (max-width: 700px) {

.class-body{
    overflow: hidden;
}
::-webkit-scrollbar {
    display: none;
}
body, html, h1, h4, ::placeholder, input, button, small{
    font-family: 'Folio';
    font-size: 22px; 
    }


/* Logo in apertura*/
#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh !important;
    background-color: #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
#intro-logo {
    max-width: 250px;   
    cursor: pointer;
}
.works-container{
    display: grid;
    grid-template-columns: auto;
    padding-top: 3em;
    padding-bottom: 1em;
}
.paypal-button td{
    font-size: 22px;
    z-index: 100;
}
.paypal-button select{
    font-size: 19px;
    margin-bottom: 1em;
    z-index: 100;
}
.central-image{
    margin-top: 1em;
    margin-bottom: 1em;
    position: static;
    transform: none;
    height: auto;
    display: block;
    pointer-events: auto; 
}
.central-image img{
    display: block;
    width: 100%;
    height: auto;
}
.about{
    padding-left: 1em;
    padding-right: 1em;
    margin-top: 3em;
    width: 100%;
}
.about p{
    padding-bottom: 1em;
}
}