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

html, body {
  margin: 0; 
  padding: 0; 
  height: 100%; 
  width: 100%;
}

body {
  background: url("images/skulls.jpg");
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 800px;
}

.gradient-bg {
  background: url("images/gradient.jpg");
  background-size: 600px;
  animation: moveIt 10s linear infinite;
}

.contents {
  /* background-color: #940405; */
  /* background: radial-gradient(circle,rgba(148, 4, 5, 1) 64%, rgba(0, 0, 0, 1) 100%); */
  border: 5px solid black;
  padding: 20px;
  flex-wrap: wrap;          /* allows wrapping if they don't fit */
  gap: 15px;                /* spacing between items */
  justify-content: center;  /* centers them horizontally */
  align-items: center;      /* keeps them vertically aligned */
}

@keyframes moveIt {
  from {background-position: bottom left;}
  to {background-position: top right;}
}

#title {
  /* background-color: #940405; */
  /* background: radial-gradient(circle,rgba(148, 4, 5, 1) 64%, rgba(0, 0, 0, 1) 100%); */
  padding: 10px;
  border: 5px solid black;
  font-family: monospace;
}

#hands {
  position: absolute;
  left: 1150px;
  top: 400px;
}

#gifsleft {
  position: absolute;
  left: 100px;
  top: 400px;
}

#gifright {
  position: absolute;
  right: 100px;
  top: 400px;
}

#cat {
  position: relative;
  right: 640px;
}