body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures the container takes the full height of the viewport */
    /* background-image: url('background.png'); */
    background-size: cover;
    background-position: top;
}

.gif-container {
    position: fixed;
    bottom: 20px; /* Adjust this value to change the distance from the bottom */
    left: 20px; /* Adjust this value to change the distance from the left */
    z-index: 1000; /* Ensures the GIF is above other content */
}

.bottom-left-gif {
    width: auto;
    height: auto;
    max-width: 150px; /* Adjust this value to control the size of the GIF */
}

.top-right-img {
  position: absolute;
  top: 10px;     /* distance from the top */
  left: 10px;   /* distance from the right */
  width: 10px;  /* adjust size */
  height: auto;  /* keep proportions */
  z-index: 1000; /* keep it above other elements */
}

/* Additional styles for your content */