.wrapperNumber {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  /* background-color: #f2f2f2; */
  max-height: 400px;
  max-width: 100vw;
  overflow: hidden;
  flex-wrap: wrap;
  padding: 10px;

}
.success {
  background-color: green;
  animation: bounce 0.8s ease;

  color: white;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(15px);
  }
  60% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(10px);
  }
  80% {
    transform: translateY(-5px);
  }
  90% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(-1px);
  }
}
.error {
  background-color: red;

  color: white;
  animation: shakeError 0.8s ease-in;
 
}
@keyframes shakeError {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-30px);
  }
  50% {
    transform: translateX(20px);
  }
  60% {
    transform: translateX(-10px);
  }
  70% {
    transform: translateX(6px);
  }
  80% {
    transform: translateX(-4px);
  }
  90% {
    transform: translateX(3px);
  }
  100% {
    transform: translateX(-1px);
  }
}

.input {
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  border: none;
  box-shadow: 3px 3px 5px #ccc;
  text-align: center;
}

.button {
  padding: 10px;
  margin: 10px;
  border-radius: 5px;
  border: none;
  box-shadow: 3px 3px 5px #ccc;
  text-align: center;
  cursor: pointer;
}
.column{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background-color: #f2f2f2;
}

*{
  margin: 0;
  padding: 0;
box-sizing: border-box;
}
.container{
    padding: 10px;
}

body {
  font-size: 16px;
  font-family: Mulish;
}

.menu {
  display: flex;
  gap: 40px;
}
.menu-links {
  text-decoration: none;
  color: black;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 0 10px #ccc;
  background-color: rgb(237, 237, 237);
}
header {
  display: flex;
  justify-content:space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: rgb(219, 219, 219);

}
h1 {
  font-size: 1.6em;
}

img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ccc;
  margin-top: 0px;
}

@media screen and (max-width: 768px) {
 .menu {
   display: flex;
   flex-direction: column;
   gap: 40px;
 }
 header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: rgb(219, 219, 219);
  gap: 20px;
}

}
