body{
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right,rgb(57, 40, 119),rgb(169, 153, 210));

}
.container{
    background-color: rgba(255, 255, 255,0.2);
    backdrop-filter:blur(10px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: neonGlow 2s infinite alternate;

}
@keyframes neonGlow{
    from{
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

    }
    to{
        box-shadow: 0px 0px 20px rgb(78, 19, 115),
        0px 0px 30px rgb(110, 53, 127),
        0px 0px 40px rgb(217, 178, 229);
    }
}
h1{
    color: aliceblue;
    font-size: 36px;
    margin-bottom: 20px;
}
textarea{
    width: 500px;
    height: 350px;
    margin: 10px auto;
    display: block;
    font-size: 24px;
    padding: 20px;
    color: rgb(0, 0, 0);
    border: 1px solid wheat;
    border-radius: 5px;
    resize: none;
    animation: slideIn 2s ease;
}
@keyframes slideIn{
    from{
        opacity: 0;
        transform: translateY(-20px);

    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
button{
    padding: 15px 30px;
    background-color: rgb(60, 140, 60);
    width: 550px;
    color: whitesmoke;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover{
    background-color: rgb(98, 218, 178);

}

#result{
    font-size: 20px;
    margin-top: 20px;
    color: rgb(201, 230, 230);
    font-weight: bold;body{
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #33001b, #9e326a);
}

.container{
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: neonGlow 1s infinite alternate;
}

@keyframes neonGlow {
    from{
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);

    }
    to{
        box-shadow: 0px 0px 20px #e61380,
        0px 0px 30px #ce1c78,
        0px 0px 40px #ff0084;
    }
    
}

h1{
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 20px;
}

textarea{
    width: 500px;
    height: 350px;
    margin: 10px auto;
    display: block;
    font-size: 24px;
    padding: 20px;
    color: rgb(0, 0, 0);
    border: 1px solid #dddddd;
    border-radius: 5px;
    resize: none;
    animation: slideIn 1s ease; 

}

@keyframes slideIn {
    from{
        opacity: 0;
        transform: translateY(-20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
    
}

button{
    padding: 15px 30px;
    background-color: #4caf50;
    width: 500px;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover{
    background-color: #33022b;
}

#result{
    font-size: 20px;
    margin-top: 20px;
    color: azure;
    font-weight: bold;
    animation: neonGlow 1s infinite alternate;
}
    animation: neonGlow 2s infinite alternate;
}