/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}  
/*marquee*/
.wrapper {
  max-width: 100%;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 25s linear infinite;
  border: 3px solid #5c694d;
  color: #5c694d
}

.marquee p {
  display: inline-block;
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/*jiggling-text*/
body {
  font-family: 'Georgia', serif;
  background: #F7CA05;
  display: flex;
  align-content: center;
  justify-content: center;
}

.box {
  position: absolute;
  top: 20%;
  left:50%;
  transform: translate(-50%,-50%);
}

h3 {
  font-size:15vw;
  white-space: nowrap;
  overflow: visible;
  line-height: 220px;
  color: #d89a7c;
  text-shadow: 3px 3px 5px #5c694d;
  letter-spacing: -4px;
}

h3:hover {
  animation: glitch .3s linear infinite;
  cursor: pointer;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}


.img01 {
  position: absolute;
  width: 20%;
  height: 20%;
  top: 30%;
  left: 60%;
  transform: translate(-50%,-50%);
}

.img02 {
  position: absolute;
  width: 80%;
  top: 20%;
  left: 35%;
  transform: translate(-30%,-30%);
}