@keyframes fadein{
    0% {opacity: 0;}
    100% {opacity: 1;}
}

body {
font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.2;
    background-color: #ffffff;
    color: #202020;
    margin:1vw;
    transition: background-color 1.5s ease;
}

header {

    width: 94vw;
/*
    left:auto;
    right:auto;
*/  z-index: 2;
    height: 70px;
    display: flex;
    flex-direction: row;
    
    align-items: baseline;
    justify-content:space-between;
    position: fixed;
    padding: 2vw;
    transition: all ease 0.5s;
}
.first{
    padding-top:17vh;
}

.hidden {
    transform: translateY(-100%);
}

h1 {
    font-size: 40px;
    font-weight: 700;
}


h1 a:hover{
    border-bottom:none;
}

h1 a{
    border-bottom:none;
}

h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom:20px;
}



 a {
    color: rgb(32, 32, 32);
    text-decoration: none;
    border-bottom: none;
    margin: 0 0 0 30px;
    font-variation-settings: "wght"400, "wdth"100;
    transition: all ease 1s;
    text-align: center;
    border-bottom: 1.5px solid rgba(32, 32, 32, 0) ;
}



 a:hover {
    font-variation-settings: "wght"700, "wdth"100;
    transition: all ease 1s;
    border-bottom: 1.5px solid rgb(32, 32, 32);
}

.button a:hover{
     cursor: url(cursor_up.png) 15 15, move;
}




.button{
    
    position: fixed;    
    bottom:3vw;
    top:auto;
    left:auto;
    right:3vw;
font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.5;
  background-color: rgba(0,0,0,0);
border:none;
}

section {
    padding: 10vw 0 0 0;

       height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

section img {
width: 1080px;
  height: auto;
    /*max-width:1350px;*/
/*
    padding-left: 10vw;
    padding-right: 10vw;
*/
        

}

section p{
    width:800px;
    margin-bottom:0px;
    text-align: center;
}
section.detail{
    margin-top:-10vh;
    
}.detail p{
    text-align: center;    
}

.first h2{
    text-align: center;
    

}


.progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

.bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #202020;
}

footer {
    height: 30vh;


}

@media (max-width:1100px){
    
section img {
width: 80vw;
  height: auto;
    /*max-width:1350px;*/
/*
    padding-left: 10vw;
    padding-right: 10vw;
*/
        

}
    section p{
        width:80vw;}
    
    body{
        background-color: #fff;
    }
}
@media (max-width:900px) {

    h1 {
        font-size: 20px;
    }

    body  {
        font-size: 15px;
    }  .button  {
        font-size: 15px;
    }
    

    header {
    max-width: 96vw;
		left:auto;
		right:auto;

    }
}


