body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: rgb(246, 245, 252);
}

h1 {
    text-align: center;
    color: rgb(144, 127, 241);
}

label {
    display: block;
    margin-top: 10px;
}

textarea {
    width: 90%;
    padding: 10px;
    font-size: medium;
    border-radius: 7px;
    border: 1px solid rgb(226, 220, 220);
}
textarea:focus, select:focus{
    outline: none;
}
#textarea{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
select {
    width: 50%;
    margin-bottom: 10px;
    padding: 5px 5px;
}
#form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
button {
    display: block;
    margin-top: 10px;
    background-color: rgb(140, 66, 238);
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 7px;
}
#btns{
    display: flex;
    width: 40%;
    margin: auto;
    justify-content: space-around;
}
button:hover{
    cursor: pointer;
    background-color: rgb(168, 113, 240);
}

#loader {
    display: none;
    text-align: center;
    margin-top: 10px;
}

#result {
    margin-top: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    min-height: 25vh;
    background-color: #fff;
    border-radius: 7px;
}