.introduction {
  position: relative;
  background: url("../img/wind-pattern.png") repeat;
  text-align: center;
  justify-content: stretch;
  color: white;
}

.funny-gif:not(img) {
  display: flex;
  position: absolute;
  width: 100%;
}

.funny-gif-img {
  display: flex;
  position: relative;
  max-width: 50%;
  height: auto;
  flex: 1 1 auto;
  z-index: 0;
}

.profile-pic {
  position: relative;
  z-index: 1;
  margin-top: 1vh;
  border-radius: 50%;
  background: white;
  height: 15%;
  width: 15%;
  border: 100px black;
}

.name {
  position: relative;
  z-index: 999;
  margin-top: 5vh;
}

.name span {
  background: #888888;
  font-family: 'Press Start 2P', cursive;
  padding: 1vw;
}

.typewriter {
  position: relative;
  z-index: 1;
}

/* Adapted from https://codepen.io/danielgroen/pen/VeRPOq */
.typewriter span {
    border-right: .05em solid;
    animation: caret 1s steps(1) infinite;
}

@keyframes caret {
  50% {
    border-color: transparent;
  }
}

.demos {
  background: linear-gradient(0deg, #cc7367 1%, white);
}

.previews {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  flex-direction: row;
}

.individual-project-preview {
  display: flex;
  flex-direction: column;
  font-family: 'Baloo Tammudu', cursive;
  color: white;
  background-color: rgba(0.53, 0.53, 0.53, 0.5);
  padding: 2vh;
  border-radius: 5%;
  margin: 1vw;
}

.individual-project-preview > img {
  height: 30vw;
  width: 30vw;
  margin: auto;
}

.yoshi-container {
  position: relative;
  height: 8vh;
  padding-top: 1vh;
  padding-bottom: 1vh;
}

.yoshi {
  z-index: 1;
  height: 8vh;
  position: absolute;
  animation-name: move;
  animation-duration: 10s;
  animation-delay: 2s;
  animation-fill-mode: none;
  animation-iteration-count: infinite;
  -webkit-transform-style: preserve-3d;
  -webkit-transform:translate3d(0,0,0);
  -webkit-backface-visibility: hidden;
}

@keyframes move {
  from { transform: translateX(-200px) }
  to { transform: translateX(101vw) }
}

.skills {
  background: #cc7367;
  margin: 0;
}

.talent-column {
  background: #888888;
}

.resume {
  background: url("../img/mountains.png") repeat;
}

.resume h1 {
  background-color: rgba(0.53, 0.53, 0.53, 0.5);
  padding: 2vh;
  border-radius: 5%;
}

.modal-dialog {
  max-width: 800px;
  margin: 30px auto;
}

.modal-body {
  position:relative;
  padding: 0;
}
.close-bttn {
  position:absolute;
  right:-30px;
  top:0;
  z-index:999;
  font-size:2rem;
  font-weight: normal;
  color:white;
  background-color: transparent;
  border-color: transparent;
  opacity:1;
}

.talent-grid {
  width: 80%;
  text-align: center;
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
}

.talent-column {
  flex-direction: column;
}

.talent-column img {
  width: 10vw;
  height: auto;
  margin: 1vh;
}

.talent-column img:hover {
  border: thick solid aqua;
}
