/* 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." */
   
h1 {
  font-family: "/fonts/cocogoose.ttf";
}

body {
  color: black;
  font-family: Verdana;
}

#intro-text{
  color: #fff;
  font-familly:"/fonts/theboldfont.ttf";
  font-size:25px
  font-weight:bold;
  }
  
div div{
  float:left;
  border:6px,Tomato;
  border-style: groove;
  }
button{
  background-color: rgba(0,0,0,0);
  border:0px,rgba(0,0,0,0);
  display: block; /* Make the buttons appear below each other */
  padding:5px;
}

button:hover {
  /* Start the shake animation and make the animation last for 0.5 seconds */
  animation: shake 0.5s;

  /* When the animation is finished, start again */
  animation-iteration-count: infinite;
}

#buttonimg{
  transition: 0.3s;
  opacity:0.6;
  }
#buttonimg:hover{opacity:1;}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}