body {
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0; /* Background color for better visibility */
  }

  #container {
    position: relative;
  }

  #image {
    width: 100vw;
    height: auto;
    object-fit: cover;
    z-index: 1;
  }

  #noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
   
  }

  /* RANDOMIZE BUTTON */

.button-container {
  position: absolute;
  z-index: 3;
  display: flex;
  justify-content: space-between; /* Adjust as needed */
  bottom: 0vh;
  width: 100vw;
}

.buttons {
  display: flex;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  width: 3vw;
  height: auto;
}

.buttons img {
  max-width: 100%; /* Ensure the image doesn't overflow its container */
}

/* Initial mix-blend-mode */
.buttons {
  mix-blend-mode: normal;
  opacity: 0.3;
}

/* Change mix-blend-mode on hover */
.buttons:hover {
  mix-blend-mode: difference; /* Change to your desired blend mode */
  opacity: 1;
}

#home-button{
  filter: drop-shadow(10px -10px 30px rgb(165, 127, 255));
  transition: 0.3s ease-in;
  cursor: pointer;
}

#home-button:hover{
  filter: drop-shadow(-30px 30px 30px rgb(225, 255, 127));
}

#custom-button {
  filter: drop-shadow(10px -10px 10px rgb(165, 127, 255));
  transition: 0.3s ease-in;
  cursor: pointer;
}

#custom-button:hover{
  filter: drop-shadow(-10px 10px 50px aquamarine);
}
