/* 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: #ff2ba3;
background: linear-gradient(164deg,rgba(255, 43, 163, 1) 0%, rgba(187, 0, 255, 1) 50%, rgba(83, 237, 232, 1) 100%);
background-size: contain;
background-repeat: initial;
background-attachment: initial;
background-origin: initial;
background-clip: initial;
background-color: initial;
height: 100%;
min-height: 100vh;
font-family: "Lucida Console", Courier, monospace;
}

h1 {
  text-align: center;
}

.container {
  display: block;
  padding: 10px;
  margin: 10px auto;
  max-width: 90vw; 
  overflow: auto;
}

.animation-container {
  display: inline-block;
  overflow: auto;
}

.animation-container img {
  display: block; /* removes extra bottom space */
  max-width: 200; /* optional: makes image responsive */
  height: auto;
}

/* remember to define focus styles! */
:focus {
    outline: .125rem solid #ff5de6;
    outline-offset: .125rem;
}

.center {
  display: grid;
  place-items: center;
  height: 100vh;
}

.footer {
  text-align: right;
}