/* Animation of gamecube beginning */

html,
body {
  margin: 0;
  height: 100%;
  background: black;
  overflow: hidden;
}

@-webkit-keyframes cubeshake {
  0% {
    transform: translate3d(-75px, -150px, 0) rotateX(55deg) rotateZ(45deg);
  }
  50% {
    transform: translate3d(-75px, -150px, 0) rotateX(45deg) rotateZ(45deg);
    top: 55%;
  }
  100% {
    transform: translate3d(-75px, -150px, 0) rotateX(55deg) rotateZ(45deg);
  }
}
@-webkit-keyframes cubeshakeStart {
  0% {
    transform: translate3d(-75px, -150px, 0) rotateX(55deg) rotateZ(45deg);
  }
  50% {
    transform: translate3d(-75px, -150px, 0) rotateX(55deg) rotateY(10deg) rotateZ(45deg);
    top: 55%;
  }
  100% {
    transform: translate3d(-75px, -150px, 0) rotateX(55deg) rotateZ(45deg);
  }
}
@-webkit-keyframes cubeglow {
  0% {
    box-shadow: none;
  }
  50% {
    box-shadow: inset 0 0 50px 5px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: none;
  }
}
@-webkit-keyframes cubeglowStart {
  0% {
    box-shadow: none;
  }
  50% {
    box-shadow: inset 0 0 50px 5px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: none;
  }
}
@-webkit-keyframes fall {
  0% {
    transform: translate3d(100px, 0, 500px);
  }
  100% {
    transform: translate3d(100px, 0, 0);
  }
}
@-webkit-keyframes jump {
  0% {
    transform: translate3d(150px, 50px, -50px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  }
  75% {
    transform: translate3d(75px, 75px, 50px) rotateX(0deg) rotateY(180deg) rotateZ(0deg);
  }
  100% {
    transform: translate3d(75px, 75px, -75px) rotateX(0deg) rotateY(180deg) rotateZ(0deg);
  }
}
#cvs {
  width: 100%;
  height: 100%;
  perspective: 999999999px;
}

#cube {
  position: absolute;
  height: 150px;
  width: 150px;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
  transform: translate3d(-75px, -150px, 0) rotateX(55deg) rotateZ(45deg);
  -webkit-animation: cubeshakeStart 0.3s ease-out;
  -webkit-animation-delay: 0.24s;
}

#cube.full {
  -webkit-animation: cubeshake 0.3s ease-out;
  -webkit-animation-delay: 0.42s;
}

#cube.shake {
  -webkit-animation: cubeshake 0.3s;
}

.cubeface {
  position: absolute;
  height: 150px;
  width: 150px;
  transform-style: preserve-3d;
  -webkit-animation: cubeglowStart 0.3s ease-out;
  -webkit-animation-delay: 0.24s;
}

#cube.full .cubeface {
  -webkit-animation: cubeglow 0.3s ease-out;
  -webkit-animation-delay: 0.42s;
}

.cubeface.front {
  top: 150px;
  transform-origin: top;
  transform: rotateX(-90deg);
}

.cubeface.back {
  transform-origin: top;
  transform: rotateX(-90deg);
}

.cubeface.right {
  left: 150px;
  transform-origin: left;
  transform: rotateY(90deg);
}

.cubeface.left {
  transform-origin: left;
  transform: rotateY(90deg);
}

.cubeface.bottom {
  transform: translateZ(-150px);
}

.square {
  opacity: 0;
  position: absolute;
  height: 50px;
  width: 50px;
  background: #5e4cba;
  border: 3px solid black;
  box-sizing: border-box;
  transition: all 0.18s, opacity 0.06s;
}

.square.visible {
  opacity: 1;
}

#cube.metal .square {
  border: 0;
}

#cube.metal .top .square {
  background: #e2e6e9;
}

#cube.metal .front .square {
  background: #898fbf;
}

#cube.metal .right .square {
  background: #535e8b;
}

.top .square:nth-child(1) {
  top: 0;
  left: 50px;
}

.top .square:nth-child(2) {
  top: 0;
  left: 0;
}

.top .square:nth-child(3) {
  top: 50px;
  left: 0;
}

.top .square:nth-child(4) {
  top: 100px;
  left: 0;
}

.front .square:nth-child(1) {
  top: 0;
  left: 0;
}

.front .square:nth-child(2) {
  top: 50px;
  left: 0;
}

.front .square:nth-child(3) {
  top: 100px;
  left: 0;
}

.front .square:nth-child(4) {
  top: 100px;
  left: 50px;
}

.front .square:nth-child(5) {
  top: 100px;
  left: 100px;
}

.right .square:nth-child(1) {
  top: 100px;
  left: 100px;
}

.right .square:nth-child(2) {
  top: 50px;
  left: 100px;
}

.right .square:nth-child(3) {
  top: 0;
  left: 100px;
}

.right .square:nth-child(4) {
  top: 0;
  left: 50px;
}

.right .square:nth-child(5) {
  top: 0;
  left: 0;
}

.right .square:nth-child(6) {
  top: 50px;
  left: 0;
}

#minicube {
  position: absolute;
  width: 50px;
  height: 50px;
  transform: translate3d(100px, 0, 0);
  transform-style: preserve-3d;
  transform-origin: 0 0 0;
  -webkit-animation: fall 0.3s ease-in;
}

#minicube.transition {
  transition: all 0.06s;
}

.minicubeface {
  position: absolute;
  width: 50px;
  height: 50px;
  background: radial-gradient(#5e4cba, #7059e5) center;
  background-size: 100px 100px;
  border: 1px solid #4f3fa1;
  transform-style: preserve-3d;
  box-sizing: border-box;
  transition: all 0.48s ease-in, background 0.06s;
}

.minicubeface.top {
  transform: translate3d(0, 0, 50px);
}

.minicubeface.front {
  transform-origin: bottom;
  transform: rotateX(-90deg);
}

.minicubeface.left {
  transform-origin: left;
  transform: rotateY(-90deg);
}

.minicubeface.right {
  transform-origin: right;
  transform: rotateY(90deg);
}

.minicubeface.back {
  transform-origin: top;
  transform: rotateX(90deg);
}

#minicube.grow {
  -webkit-animation: jump 0.48s cubic-bezier(0.5, 1.2, 0, 0.9);
  transform: translate3d(75px, 75px, -75px) rotateY(180deg) !important;
  transform-origin: 75% 75% 37.5px !important;
}

#minicube.grow .minicubeface {
  width: 75px;
  height: 75px;
}

#minicube.grow .minicubeface.top {
  transform: translate3d(0, 0, 75px);
}

#cube.metal .minicubeface {
  border: 0;
}

#cube.metal .minicubeface.bottom {
  background: #e2e6e9;
}

#cube.metal .minicubeface.front {
  background: #898fbf;
}

#cube.metal .minicubeface.left {
  background: #535e8b;
}

/* Animation of gamecube end */





.everything-else-after-animation {
  margin: 0%;
  height: 100%;
  background: rgb(3, 18, 31);
  overflow: scroll;
  font-family: joystix;
}

@font-face {
    font-family: joystix;
    src: url(./joystix/joystix\ monospace.ttf);
    font-weight: italic;
}


/* Navigation bar */

/* Logo */
/* .hexagon {
  position: relative;
  width: 300px; 
  height: 173.21px;
  background-color: #7d3dbd;
  margin: 86.60px 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.65);
  transform:scale(0.2);
  top: -125px;

}

.hexagon:before, .hexagon:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 212.13px;
  height: 212.13px;
  -webkit-transform: scaleY(0.5774) rotate(-45deg);
  -ms-transform: scaleY(0.5774) rotate(-45deg);
  transform: scaleY(0.5774) rotate(-45deg);
  background-color: inherit;
  left: 43.9340px;
  box-shadow: 0 0 20px rgba(0,0,0,0.65);
}

.hexagon:before {
  top: -106.0660px;
}

.hexagon:after {
  bottom: -106.0660px;
}

/*cover up extra shadows*/
/* .hexagon span {
  display: block;
  position: absolute;
  top:0px;
  left: 0;
  width:300px;
  height:173.2051px;
  z-index: 2;
  background: inherit;
}

.hexagon span h1{
font-size: 200px;
} */

/* logo */





.nav ul{
    color: white;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    margin-top: 2%;
    margin-left: 2%;
    margin-right: 2%;
}

.nav ul li{
    text-decoration: none;    
}

.nav ul li a{
    color: white;
    text-decoration: none;
}

.intro{
  display: flex;
}


.image-of-smashball{
  opacity: 25%;  
  margin-left: -25%;
  margin-top: 5%;
  margin-right: 5%;
}

.wrapper-of-intro-text{
  display: inline-block;
  margin-left: 15%;
  margin-top: 5%;
}



#intro-intro-text{

    color: #5e4cba;
  /* #7059e5) center; */
}

.intro .name{
    font-size: 70px;
      animation-duration: 400ms;
      animation-name: blink;
      animation-iteration-count: infinite;
      animation-direction: alternate;
      text-shadow: yellow;
      text-decoration: none;
}
#contact-me-button{
    background-color: gold;
    border: none;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    font-family: joystix;
    transition-duration: 0.4s;
}

#contact-me-button:hover {
  background-color: rgba(0, 0, 0, 0.712); /* Green */
  color: white;
  box-shadow: 0 12px 16px 0 gold, 0 17px 50px 0 gold;
}


@keyframes blink {
  from {
    color: white;
    }
  to {
     color: gold;
  }
}

.intro .what-I-want-to-be{
    font-size: 60px;
    margin-top: 0px;
    color: rgba(255, 255, 255, 0.541);
}

.intro #body-text-about-me{
    padding-right: 50%;
    color: white;
}





.about-me-section{
  display: flex;
    color: white;
    padding-left: 15%;
    margin-right: 15%;
    margin-top: 15%;
}

#my-beautiful-face{
    width: 20em;
    height: auto;
    margin-left: 5%;
    margin-top: 5%;
    border-radius: 50%;
}


.about-me-section h3{
    margin-right: 5%;
}


@keyframes shyguy {
  from{
    left: 80%;
  }
}

.shy-guy {
	animation-name: shyguy;
  position: relative; 
  margin: 0%;

  left: 10%;
  animation-duration: 10s;
	animation-iteration-count: infinite;
  animation-direction: alternate;
}



/* 
@keyframes flip { 
  49%{
    transform: rotateY(0deg);
  }
  50%{
    transform: rotateY(180deg);
  }
  99%{ 
      transform: rotateY(180deg);
  } 
} */


.resume{
  text-align: center;
}
.resume h1{
  color: white;

}


.under-construction-to-be-done-later{

  position: relative;
  top: 200px;
  left: 50px;
  color: rgb(153, 21, 21);
  margin-right: 50%;
}