:root {
    --margin: 45px;
}
@keyframes fadeIn{
    0%{
        opacity: 0;
        
    }
    100%{
        opacity: 100;
        
    }
}

@keyframes fadeOut{
    0%{
        opacity: 100;
        
    }
    100%{
        opacity: 0;
        
    }
}

body{
    cursor: none;
}

a:hover{
    cursor: none;
}

header{
    z-index: 5;
    top: 0;
    position: fixed;
    width: calc(100% - (var(--margin) * 2));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: var(--margin);
    padding-right: var(--margin);
    height: 55px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background-color: white;
}

.centerNav{
    margin-left: 20px;
    margin-right: 20px;
}

.rightNav{
    margin-right: 40px;
}
nav{
    display: flex;

}

.burgerIcon, .crossIcon{
    display: none;
    opacity: 30%;
    transition: .2s all ease;
}



.burgerIcon:hover{
    opacity: 100%;
}
.crossIcon:hover{
    opacity: 100%;
}

main{
    margin-top: 75px;
    margin-left: var(--margin);
    margin-right: var(--margin);
}

.pageTitle{
    display: flex;
    align-items: center;
    width: 100%;
    column-gap: 25px;
    padding-top: 55px;
    height: 100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.title{
    padding-top: 22px;
    padding-bottom: 22px;
}
.pageDescription{
    display: flex;
    align-items: center;
}

footer{
    height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: var(--margin);
    padding-right: var(--margin);   
}

.websiteBy{
    display: flex;
}

.gap{
    margin-right: 4px;
}

.grid{
    display: grid;
    padding-left: var(--margin);
    padding-right: var(--margin); 
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 25px;
}


.fullScreenNav{
    top: 0;
    width: 100vw;
    height: 100svh;
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: all .2s ease;

}

.closed{
    display: none;
}

.fullScreen{
    display: flex;
    flex-direction: column;
}

.fullScreen > .bigButton{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    margin-bottom: 22px;
}
.displayNone{
    display: none;
}
.displayBlock{
    display: block;
}


.cursor {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: 1px solid black;
    opacity: .3;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    transform: translate(calc(-50% + 15px), -50%);
    z-index: 15;
  }
  
  .cursor2 {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: black;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 15;
  }

  .bigPictureContainer{
    display: none;
    opacity: 0 ;
    position: fixed;
    top: 0;
    align-items: center;
    justify-content: center;
    z-index: 2;
    height: 100vh;
    width: 100vw;
    transition: all .5s ease;
    flex-direction: column;

}

.legende{
    margin-top: 10px;
}

.background{
    
    background-color: white;
    opacity: 99%;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
}

.bigPicture{
    height: 80%;
    width: auto;
    transition: all ease .5s;
}

.photo{
    /* opacity: 0; */
}

.photo:hover{
    width: 102%;
}

