body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #302b63;
    background-image: url("background.png");
    background-size: 5%;
    animation: movement 25s infinite;
}

@keyframes movement {
  50% {background-position: center;}
  50% {background-size: 8%;}
}

.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    width: 30%;
}

.container:hover {
   img {
    filter: invert();
    transition-duration: 1s;
   }
   progress{
    filter: invert();
    transition-duration: 1s;
   }
}

img {
    transition-duration: 0.3s;
}

form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input {
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    max-width: 300px;
}

button {
    padding: 10px 20px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

#result {
    font-size: 1.2em;
    margin-top: 20px;
}

progress[value] {
  --color: blue; /* the progress color */
  --background: lightgrey; /* the background color */

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  width: 200px;
  margin: 0 10px;
  border-radius: 10em;
  background: var(--background);
  --color: url(https://files.kick.com/emotes/39251/fullsize);
  transition-duration: 0.3s;
}
progress[value]::-webkit-progress-bar {
  border-radius: 10em;
  background: var(--background);
  background-size: 8%;
}
progress[value]::-webkit-progress-value {
  border-radius: 10em;
  background: var(--color);
  background-size: 8%;
}
progress[value]::-moz-progress-bar {
  border-radius: 10em;
  background: var(--color);
  background-size: 8%;
}
