body{
    display: flex;
    font-family: "Ubuntu";
    justify-content: center;
    align-items: center;
    background-color: rgb(94, 92, 92);
    cursor: none;
}
h1{
    font-size: 3rem;
    color: rgb(251, 250, 251);
}
.container {
    position: relative;
    text-align: center;
    color: white;
    background-color: rgb(77, 76, 76);
    padding: 2em;
    font-size: 1.5rem;
    border-radius: 3%;
    margin-top: 3rem;
    width: 500px;
    height: 400px;
}
.cursor-dot {
    height: 25px;
    width: 25px;
    background-color: white;
    mix-blend-mode: difference;
}
.cursor-outline{
    height: 40px;
    width: 40px;
    border: 2px solid hsla(0, 0%, 100%, 0.5)
}
.cursor-dot, .cursor-outline{
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
img{
    mix-blend-mode: none;
}
.generatebtn {
    padding: 1rem 2rem;
    font-size: 25px;
    background-color: rgb(23, 22, 22);
    font-weight: 600;
    color: white;
    font-family: "Ubuntu";
    border-radius: 5%;
}
.fadeInUp {
  animation: 1s fadeInUp;
}
@keyframes fadeInUp {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}