/* Gentium Plus */

@font-face {
  font-family: GentiumPlusW;
  src: url(../fonts/gentiumplus/GentiumPlus-Regular.woff2);
}

@font-face {
  font-family: GentiumPlusW;
  font-style: italic;
  src: url(../fonts/gentiumplus/GentiumPlus-Italic.woff2);
}

@font-face {
	font-family: GentiumPlusW;
	font-weight: bold;
	src: url(../fonts/gentiumplus/GentiumPlus-Bold.woff2);
}

@font-face {
	font-family: GentiumPlusW;
	font-weight: bold;
	font-style: italic;
	src: url(../fonts/gentiumplus/GentiumPlus-BoldItalic.woff2);
}



*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}


html, body {
    height: 100vh;
    width: 100vw;
    margin: 0px;
    overflow-x: hidden;

}


    .container {
     display: grid;
     grid-template-columns: 1fr;
     grid-template-rows: repeat(auto);
   
     column-gap: 2vh;
     row-gap: 2vh;
   
     position: relative;
  
     height: 100%;
     width: 100%;

     padding-left: 1%;
     padding-right: 1%;
     
     align-items: center;
     background-color: black;
     
    }


    .hero {
        height: 100vh;
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 2;
        position: relative;
        background-color: black;
        display: flex;
        justify-content: center;

    }

    
    .hero picture {
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        object-fit: contain;
        background-color: black;

    }

    
    .text-overlay {
        display: block;
        max-width: 60%;
        padding: 1%;
        
        position: absolute;
        top: 5vh;
        
        color: black;
        font-family: 'GentiumPlusW', serif;
        font-size: calc(10pt + 2vh);
        background-color: white;
        text-align: left;
        box-shadow: 10px 10px black;

    }


    * p, li {
        font-family: 'GentiumPlusW', serif;
        font-size:calc(12pt + 0.4vw);
  
        text-align: justify;
        hyphens: auto;
        
    }
    
    
    * p {
        margin-bottom: 1em;
  
    }
    
    
    * h1 {
        font-family: 'GentiumPlusW', serif;
        font-size: calc(12pt + 0.3vw);
        font-weight: normal;
        hyphens: auto;
        margin-top: 0.5em;

    }
    
    
    .menuwrapper {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 2;

        position: absolute;
        object-fit: contain;
        top: 5vh;
        right: 9vw;

    }
    
    
    #menu-btn {
        position: absolute;
        top: -100%;
        left: -100%;
    }


    .menu {
        max-width: unset;
        max-height: 0;
        transition: max-height 0.2s ease-out;
        overflow: hidden;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: right;
        margin-right: 2rem;
        box-shadow: 10px 10px black;
    }

    
    .menu a {
        text-decoration: none;
        padding: 20px 20px;
        color: black;
        background: white;
        width: 35vw;
        text-align: right;
        font-family: 'GentiumPlusW', serif;
        font-size: calc(12pt + 0.3vw);
    }

    
    .menu-btn {
        display: none;
    }


    .menu-icon {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 2;

        cursor: pointer;
        display: flex;
        justify-content: flex-end;
        align-items: baseline;
        padding: 30px 20px 30px 0;
        position: relative;
        user-select: none;
        visibility: visible;
    }
    
    .navicon {
        background: white;
        display: block;
        height: 4px;
        width: 33px;
        position: absolute;
    }
    
    
    .navicon:before {
        top: 10px;
        background: white;
    }
    
    
    .navicon:after {
        top: -10px;
        background: white;
    }
    
    
    .navicon:before,
    .navicon:after {
        display: block;
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        transition: all 0.2s ease-out;
    }
    
    
    .menu-btn:checked ~ .menu {
        max-height: 200vh;
    }


    .menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }

    
    .menu-btn:checked ~ .menu-icon .navicon:before {
        transform: rotate(-45deg);
  
    }
   
   
    .menu-btn:checked ~ .menu-icon .navicon:after {
        transform: rotate(45deg);
    }

  
    .menu-btn:checked ~ .menu-icon .navicon:before,
    .menu-btn:checked ~ .menu-icon .navicon:after {
        top: 0;
    }

