*{margin: 0; padding: 0;}

html{
  background-color: black;
  /* animation: backAnim;
  animation-duration: 90s;
  animation-iteration-count: infinite;
  animation-timing-function: linear; */
  /* overflow: hidden; */
}

body{
   background-color:transparent;
}


.logo{
  position: fixed;
  height: 10vh;
  right: 5px;
  bottom: 10px;
  mix-blend-mode: difference;
  z-index: 10;
}

::-webkit-scrollbar {
  width: 0.7em;
  display: block;
  background: white;
  /* display: none; */
}

::-webkit-scrollbar-thumb{
  background: black;
}

#sea-background {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.canvas{
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/*.canvas{
  display: flex;
  width: 100%;
  height: 100vh;
  background: white;
  align-items: center;
  justify-content: center;
  background: linear-gradient(25deg, rgba(40,40,40,1) 0%, rgba(0,28,98,1) 24%, rgba(255,119,78,1) 50%, rgba(222,1,85,1) 75%, rgba(73,23,149,1) 100%);
  background-size: 400% 400%;
  background-attachment: fixed;

  -webkit-animation: GradientBackground 100s ease infinite;
  -moz-animation: GradientBackground 100s ease infinite;
  -o-animation: GradientBackground 100s ease infinite;
  animation: GradientBackground 100s ease infinite;
}*/

@-webkit-keyframes GradientBackground {
  0%{background-position:0% 97%}
  50%{background-position:100% 4%}
  100%{background-position:0% 97%}
}
@-moz-keyframes GradientBackground {
  0%{background-position:0% 97%}
  50%{background-position:100% 4%}
  100%{background-position:0% 97%}
}
@-o-keyframes GradientBackground {
  0%{background-position:0% 97%}
  50%{background-position:100% 4%}
  100%{background-position:0% 97%}
}
@keyframes GradientBackground {
  0%{background-position:0% 97%}
  50%{background-position:100% 4%}
  100%{background-position:0% 97%}
}

@keyframes infosOpeningAnimation {
  from{
    filter: blur(50px);
    opacity: 0;
  } to {
    filter: blur(0px);
    opacity: 100;
  }
}

.isometric{
  display: flex;
  width: 50vh;
  height: 50vh;
}

@keyframes cubeAnimation {
  0%{
    -ms-transform: translateY(0vh);
    -webkit-transform: translateY(0vh);
    transform: translateY(0vh);
  }
  25%{
    -ms-transform: translateY(1vh);
    -webkit-transform: translateY(1vh);
    transform: translateY(1vh);
  }
  50%{
    -ms-transform: translateY(0vh);
    -webkit-transform: translateY(0vh);
    transform: translateY(0vh);
  }
  75%{
    -ms-transform: translateY(-1vh);
    -webkit-transform: translateY(-1vh);
    transform: translateY(-1vh);
  }
  100%{
    -ms-transform: translateY(0vh);
    -webkit-transform: translateY(0vh);
    transform: translateY(0vh);
  }
}

.cube{
  display: block;
  animation: cubeAnimation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 30vh;
  height: 30vh;
  margin: auto;
}

@keyframes shadowAnimation {
  0%{
    filter: blur(40px);
    background-color: rgba(0,0,0,0.35);
    -ms-transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
    -webkit-transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
    transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
  }
  25%{
    filter: blur(35px);
    background-color: rgba(0,0,0,0.4);
    -ms-transform: rotate(210deg) skew(-30deg) translate(18.5vh, 21vh) scaleY(0.864);
    -webkit-transform: rotate(210deg) skew(-30deg) translate(18.5vh, 21vh) scaleY(0.864);
    transform: rotate(210deg) skew(-30deg) translate(18.5vh, 21vh) scaleY(0.864);
  }
  50%{
    filter: blur(40px);
    background-color: rgba(0,0,0,0.35);
    -ms-transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
    -webkit-transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
    transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
  }
  75%{
    filter: blur(45px);
    background-color: rgba(0,0,0,0.3);
    -ms-transform: rotate(210deg) skew(-30deg) translate(16.5vh, 19vh) scaleY(0.864);
    -webkit-transform: rotate(210deg) skew(-30deg) translate(16.5vh, 19vh) scaleY(0.864);
    transform: rotate(210deg) skew(-30deg) translate(16.5vh, 19vh) scaleY(0.864);
  }
  100%{
    filter: blur(40px);
    background-color: rgba(0,0,0,0.35);
    -ms-transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
    -webkit-transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
    transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
  }
}

@keyframes cat-txt-anim {
  0%{
    -ms-transform: translateY(0vh);
    -webkit-transform: translateY(0vh);
    transform: translateY(0vh);
  }
  25%{
    -ms-transform: translateY(-1vh);
    -webkit-transform: translateY(-1vh);
    transform: translateY(-1vh);
  }
  50%{
    -ms-transform: translateY(0vh);
    -webkit-transform: translateY(0vh);
    transform: translateY(0vh);
  }
  75%{
    -ms-transform: translateY(1vh);
    -webkit-transform: translateY(1vh);
    transform: translateY(1vh);
  }
  100%{
    -ms-transform: translateY(0vh);
    -webkit-transform: translateY(0vh);
    transform: translateY(0vh);
  }
}

@keyframes movebg {
	from{
		background-position: left;
	}
	to {
    background-position: right;
	}
}

/* .changebackground{
  position: absolute;
  background-image: url(../img/gallery.png);
  background-size: contain;
  opacity: 0;
  animation-name: movebg;
  animation-duration: 40s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 150vw;
  height: 150vh;
  top: -50vh;
  left: -50vw;
  z-index: -1;
  -webkit-transition: all 1s;
  transition: all 1s;
} */

.shadow{
  position: absolute;
  filter: blur(0px);
  animation-name: shadowAnimation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  width: 20vh;
  height: 20vh;
  -ms-transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
  -webkit-transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
  transform: rotate(210deg) skew(-30deg) translate(17.5vh, 20vh) scaleY(0.864);
  display: none;
}
.face{
  transform-origin: 0 0;
  width: 20vh;
  height: 20vh;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  /*opacity: 85%;*/
  opacity: 100%;

}

.right {
  background: #d9d9d9;
  background-size: 25vh;
  background-position: center;
  -ms-transform: rotate(-30deg) skewX(-30deg) translate(17.3vh, -14.1vh) scaleY(0.864);
  -webkit-transform: rotate(-30deg) skewX(-30deg) translate(17.3vh, -14.1vh) scaleY(0.864);
  transform: rotate(-30deg) skewX(-30deg) translate(17.3vh, -14.1vh) scaleY(0.864);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;

}

.top {
  background: rgba(254,254,254,1);
  background-size: 25vh;
  background-position: center;
  -ms-transform: rotate(210deg) skew(-30deg) translate(-23.81vh, -5.6vh) scaleY(0.864);
  -webkit-transform: rotate(210deg) skew(-30deg) translate(-23.81vh, -5.6vh) scaleY(0.864);
  transform: rotate(210deg) skew(-30deg) translate(-23.81vh, -5.6vh) scaleY(0.864);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.left {
  background: #f0f0f0;
  -ms-transform: rotate(90deg) skewX(-30deg) translate(17.3vh, -14.1vh) scaleY(0.864);
  -webkit-transform: rotate(90deg) skewX(-30deg) translate(17.3vh, -14.1vh) scaleY(0.864);
  transform: rotate(90deg) skewX(-30deg) translate(-13.6vh, -15vh) scaleY(0.864);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.right:hover{
  background-color: #F75407;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}


.left:hover{
  background-color: #f149b9;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.top:hover{
  background-color: #00B5B5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}



/* .right:hover ~ .changebackground{
  opacity: 0.8;
  -webkit-transition: all 1s;
  transition: all 1s;
} */

#about-me, #portfolio, #social{
  color: rgba(0,0,0,0);
  webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

#about-me-border, #portfolio-border, #social-border{
  color: rgba(255,255,255, 0);
  webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0,0,0,0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.isometric .cube .top:hover ~ .cat-txt #about-me {
  color: rgba(255,255,255, 1);
  /*text-shadow: 0 0 5px rgba(255,255,255,0.5);*/
  -webkit-transition: all 0.5s;
  transition: all 1s;
}

.isometric .cube .left:hover ~ .cat-txt #portfolio{
  color: rgba(255,255,255, 1);
  /*text-shadow: 0 0 5px rgba(255,255,255,0.5);*/
  -webkit-transition: all 0.5s;
  transition: all 1s;
}

.isometric .cube .right:hover ~ .cat-txt #social{
  color: rgba(255,255,255, 1);
  /*text-shadow: 0 0 5px rgba(255,255,255,0.5);*/
  -webkit-transition: all 0.5s;
  transition: all 1s;
}

.isometric .cube .top:hover ~ .cat-txt-border #about-me-border {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(237,237,237,0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.isometric .cube .left:hover ~ .cat-txt-border #portfolio-border{
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(237,237,237,0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.isometric .cube .right:hover ~ .cat-txt-border #social-border{
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(237,237,237,0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.page-content-portfolio{
  /* background: rgba(41,43,43); */
  background: white;
  color: #4f4f4f;
}

.page-content-portfolio a{
  color: #00B5B5 !important;
}



.logo-infos{
  height: 80vh;
}

#me_png{
  -webkit-filter: url(#grayscale);
  filter: url(#grayscale);
}

@keyframes backAnim {
  0%{
    background: #67E8DC;
  }
  25%{
    background: #D0A9FF;
  }
  50%{
    background: #6B96CB;
  }
  75%{
    background: #FFDEBE;
  }
  100%{
    background: #67E8DC;
  }
}

.cat-txt{
  color: rgba(255, 255, 255, 0);
  /*text-shadow: 0 0 5px rgba(255,255,255,0);*/
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50vh;
  left: 0;
  width: 100%;
  animation: cat-txt-anim;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: -1;
  /* text-align: center; */
}

.cat-txt-border{
  color: rgba(13, 15, 32, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -26vh;
  left: 0;
  width: 100%;
  animation: cat-txt-anim;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  /* text-align: center; */
}

.cat-txt span{
  display: block;
  position: absolute;
  font-family: 'Lato', sans-serif;
  /* font-style: regular; */
  font-weight: 800;
  font-size: 5em;
  color: #fff;
  /* letter-spacing: 0.5em; */
  /* left: 0; */
  /* text-align: center; */
}

.cat-txt-border span{
  display: block;
  position: absolute;
  font-family: 'Lato', sans;
  /* font-style: italic; */
  font-weight: 800;
  font-size: 2em;
  color: rgba(255,255,255,0);
  /* letter-spacing: 0.5em; */
  /* left: 0; */
  /* text-align: center; */
}

.card-img-top{
  width: 100%;
}

.page-content{
  padding-left: 10vw;
  padding-right: 10vw;
  font-family: 'Lato', sans-serif;
   background: white;
}

.page-content a{
  color: #00B5B5;
}

h1{
  display: none;
}

h2{
  font-family: 'Lato', sans-serif;
  /* font-style: italic; */
  font-weight: 800;
  font-size: 3em;
  color: #00B5B5 !important;
  /* letter-spacing: 0.3em; */
  /* font-weight: 800; */
}

h3, h4{
  margin-bottom: 1em;
}

.portfolio-item{
  padding-left: 1vw;
  padding-right: 1vw;
}

.portfolio-item img{
  filter: sepia(0%) contrast(100%) saturate(0) brightness(100%) hue-rotate(0deg);
    transition: all 1s ease-in-out;;
  /* -webkit-filter: url(#grayscale);
  filter: url(#grayscale); */
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.portfolio-item img:hover{
  filter: sepia(0%) contrast(100%) saturate(1) brightness(100%) hue-rotate(0deg);
    transition: all 1s ease-in-out;;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}


.me-picture{
  padding-left: 0;
}

.me-picture img{
  border-radius: 100%;
}

.me-desc p{
  font-size: 1.1em;
  /* letter-spacing: 0.2em; */
  line-height: 1.7em;
}

.border{
  /* font-family: 'Cormorant Garamond', serif;
  font-weight: 100;
  font-size: 2em;
  font-style: italic;
  letter-spacing: 0.2em; */
  margin-bottom: 0;
  margin-top: 1.5em;
  line-height: 0;
  color: rgba(255,255,255, 0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(127,127,127,1);
}
.about-title{
padding-top: 1em;
}

.title{
  margin-top: -0.2em;
}

.section{
  margin-bottom: 2em;
}

.card-body p, .card-body a{
  letter-spacing: 0.1em;
}

.social-links a{
  display: block;
  width: 100%;
  margin: 0 auto;
}

.social-links img{
  width: 100%;
  border: 1px solid rgba(0,0,0,0);
  /* -webkit-transition: all 0.4s;
  transition: all 0.4s; */
}

.social-links img:hover{
  border: 1px solid rgba(0,0,0,1);
  /* -webkit-transition: all 0.4s;
  transition: all 0.4s; */
}
#social-section{
  padding-bottom: 4em;
}

footer{
  height: 10vh;
  width: 100%;
}

footer p{
  text-align: center;
  -ms-transform: translateY(5vh);
  -webkit-transform: translateY(5vh);
  transform: translateY(5vh);
  color: white;
}

.separation{
  width: 100%;
  height: 5vh;
  background-image: url(../img/tvicon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
}

.me-desc, h3{
  color: #4f4f4f !important;
}





@media screen and (min-width: 1024px) {
  .shadow{
    display: block;
  }
  .cat-txt span{
    font-size: 10em;
  }
  .cat-txt-border span{
    font-size: 3em;
  }

  .social-links a{
    width: 25%;
  }
}


@media screen and (min-width: 1270px){
  .shadow{
    display: block;
  }
  .cat-txt span{
    font-size: 15em;
  }
  .cat-txt-border span{
    font-size: 3em;
  }
}
