body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #2100f6;
    color: rgb(26, 2, 247);
    margin: 0;
}

.container {
    text-align: center;
    background: rgb(229, 197, 128);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;  
    justify-content: center; 
}

textarea {
    width: 90%; 
    height: 100px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: none;
    display: block;
    margin: 10px auto; 
}

.buttons {
    display: flex;
    gap: 10px; 
    margin-bottom: 20px;
}

button {
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:nth-child(1) {
    background-color: #4551ad;
    color: white;
}

button:nth-child(2) {
    background-color: #f32dae;
    color: white;
}

#resultadoContainer {
    margin-top: 20px;
    padding: 15px;
    background-color: #2c7186;
    color: rgb(251, 246, 246);
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    text-align: justify;
    border-radius: 5px;
    min-height: 50px;
    width: 90%; 
}

#borrarResultadoBtn {
    background-color:  #f32dae;
    color: white;
    margin-top: 10px;
}