
*{
  margin: 0 auto;
  scroll-behavior: smooth;
  }

/*HERO*/

.hero{
  background-image: linear-gradient(120deg, #efcbc5 0%, #efcbc5 100%);
  height: 80vh;
  z-index: -1;
}

.hero h1{
  display: block;
  padding-left: 30vw;
  padding-right: 30vw;
  padding-top: 30vh;
  padding-bottom: 0px;
  font-family: 'Arya';
  font-weight: bolder;
  color: black;
  font-size: 20px;
  text-align: left;
}

.hero h2{
  display: block;
  padding-left: 30vw;
  padding-right: 35vw;
  padding-bottom: 20vh;
  font-family: 'Lato';
  font-weight: bolder;
  color: black;
  font-size: 30px;
  text-align: left;
}

.button{
  cursor: pointer;
  padding: 10px;
  border-radius: 100px;
  background-color: #efcbc5;
  border: none;

  text-align: center;
  padding: 10px;
  width: 200px;
  transition: all 0.5s;
  margin: 5px;
}

.button span {
  cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
color: black;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 35px;
  color: #1a1a1a;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

/* #changingText{
  display: block;
  padding-left: 30vw;
  padding-right: 30vw;
  padding-top: 30vh;
  padding-bottom: 0px;
}
#changingText div{
  overflow:hidden;
}
#changingText h1{
  font-family: 'Arya';
  font-weight: bolder;
  color: black;
  font-size: 20px;
  text-align: left;
}
#changingText #before{
  height:50px;
  width:100%;
}
#changingText:hover #before{
  -webkit-animation: beforeAnimate 5s;
}
#changingText #before h1{
  height:50px;
  width:100%;
}
#changingText:hover #before h1{
  -webkit-animation: beforeTextAnimate 5s;
}
#changingText #after{
  height:50px;
  width:0px;
    overflow: visible;
}
#changingText:hover #after{
  -webkit-animation: afterAnimate 5s;
}
#changingText #line{
  height:100%;
  width:5px;
  background:transparent;
}
#changingText:hover #line{
  -webkit-animation: lineAnimate 5s;
}

@-webkit-keyframes beforeAnimate {
    from {
      width: 100%;
      left: 0%;
    }
    to {
      width: 0%;
      left: 100%;
    }
}
@-webkit-keyframes beforeTextAnimate {
    from {
      left:1%;
    }
    to {
      left: -120px;
    }
}
@-webkit-keyframes afterAnimate {
    from {
      width: 0%;
    }
    to {
      width: 100%;
    }
}
@-webkit-keyframes lineAnimate {
    0% {
      background:transparent;
      left: 0%;
    }
    50% {
      background:red;
    }
    100% {
      background:transparent;
      left: 100%;
    }
}
 */
ul{
  position: fixed;
  width: 100vw;
  height: 100px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
/*   background-color: #efcbc5; */
}

li {
  float: right;
  opacity: 5px;
}

li a {
  display: block;
  text-align: center;
  padding: 30px;
  font-family: 'Lato';
  color: black;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: bold;
  transition: .5s;
}

.logo{
  height: 90px;
  padding: 10px;
  margin-right: 90vw;
  padding-left: 20px;
  position: fixed;
  transition: .8s cubic-bezier(.38,.01,0,.99);
}

.logo:hover{
  transition: 0.4s;
  transform: rotateY(180deg);
}

a{
  text-decoration: none;
}


h1{
  display: block;
  text-align: left;
  justify-content: left;
  padding-left: 30px;
  padding: 10px;
  font-family: 'Arya';
  font-weight: bolder;
  color: white;
  font-size: 40px;
}


h2{
  display: block;
  padding: 20px;
  text-align: left;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 30px;
  color: white;
}

h3{
  display: block;
  padding: 20px;
  text-align: left;
  font-family: 'Lato';
  font-weight: bolder;
  color:white;
  font-size: 25px;
  /* text-shadow: 5; */
/*   -webkit-text-stroke: 0.01px white; */
}


/*GRID*/

.column {
  float: left;
  width: 25%;
  padding: 10px;
  height: auto;
  overflow: hidden;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}



#ProjectsPanel{
  background-image: linear-gradient(120deg, #625350 10%, #625350 100%);
  height: auto;
  box-sizing: border-box;
}

#ProjectsPanel a{color: white;}
#ProjectsPanel a:hover {color: black; transition: .5s;}


#thumbnailContainer {
  display: flex;
  flex-direction: row;
  margin-bottom: 200px;
  align-items: center;
  padding: 0px;
}

.rogue-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

/*IMAGES*/
/*Inspired by: https://www.tutorialrepublic.com/faq/how-to-create-3d-flipping-effect-on-mouse-hover-using-css.php AND https://raphaelfabeni.com/transition-snippets/*/

.wrapper{
  width: 90%;
  /* margin: 0 auto; */
  max-width: 80rem;
  /* margin-top: 100px; */
  margin-bottom: 100px;
}

.cols{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.col{
  width: 25%;
  margin: 1rem;
  cursor: pointer;
}

.container{
  transform-style: preserve-3d;
	perspective: 1000px;
}

.front, .back{
  background-size: cover;
	background-position: center;
	transition: .8s cubic-bezier(.38,.01,0,.99);
	backface-visibility: hidden;
	text-align: center;
	min-height: 400px;
	border-radius: 10px;
	color: white;
}

.back{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.front:after{
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  opacity: .6;
  background-color: #000;
  border-radius: 10px;
}

.inner{
  transform: translateY(-50%) translateZ(60px) scale(1);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  box-sizing: border-box;
}

.container .front{
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}


.container .back{
  transform: rotateY(180deg);
  transform-style: preserve-3d;
}


.container:hover.front, .container:hover.back{
  transition: .7s cubic-bezier(.38,.01,0,1);
}

.container:hover .front{
  transform: rotateY(-180deg);
  transform-style: preserve-3d;
}

.container:hover .back{
  transform: rotateY(0deg);
  transform-style: preserve-3d;
}


.front .inner p{
  font-family: 'Arima Madurai';
  font-size: 30px;
  font-weight: 700;
  position: relative;
  bottom: -5px;
}

.front .inner p:after{
  content: '';
  width: 80px;
  height: 1.3px;
  background: #B6ABEB;
  display: block;
  margin: 0 auto;
  bottom: -5px;
}

.front .inner span{
  color: rgba(255,255,255,0.7);
  font-family: 'Arima Madurai';
  font-size: 20px;
  /* space: 20px; HOW DO I MAKE IT SHIFT DOWN*/
}

#aboutMe{
  height: 100vh;
  background: #403736 100%;
}

#aboutMe img{
  filter: invert(100%);
  height: 50px;
}

.contact-button{
  display: inline-block;
  margin-top: 20vh;
  padding: 30px;
}

.contact-button:hover{
  transition: .8s cubic-bezier(.38,.01,0,.99);
  opacity: 0.3;
}



.link{color: black}
a:hover {color: white}
a:active {color: #7369FF}
