@import url('./reset.css');

body {
  background-color: rgb(0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.gif-size {
  width: 300px; /* Set desired width */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 1px; /* Add bottom margin for spacing */
  border: 2px solid black; /* Add a black border */
  padding: 1px; /* Add padding inside the border */
}

.site-footer {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 4rem;
  opacity: 0.7;
}

/* Responsive design adjustments */
@media (max-width: 600px) {
  .gif-size {
      width: 100%; /* Adjust to fit smaller screens */
      height: auto;
  }
}