/* 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." */

/*




*/


@import url('https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap');

p.style1 {
  font-family: "Syne Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: mintcream;
  color: paleturquoise;
  font-family: 'Syne Mono', monospace;
  font-optical-sizing: auto;
}

div.main {
  width: 900px;
  margin: 20px auto;
  border: 5px double lavender;
  background-image: url('/back.png');
}

div{
  width: 500px;
  border: 7px solid rebeccapurple;
  background-color: black;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
}

div.head-box {
  border: 8px inset rebeccapurple;
  margin: 30px auto;
}


h1{
  text-align: center;
  margin: auto;
  color: mintcream;
  padding-top: 40px;
  
}

h2{
  text-align: center;
  font-size: 80%;
  padding-bottom: 60px;
}

img.bounce:active {
  transform:translate(0, 5px);
}

img.bounce:hover {
  animation-name:heartbeat;
  animation-duration:0.5s;
  animation-iteration-count:20;
}

@keyframes heartbeat {
  0% {transform: scale(1, 1)}
  33% {transform: scale(1.01, 1.01)}
  66% {transform: scale(0.99, 0.99)}
  100% {transform: scale(1, 1)}
}