:root{
    --one:rgb(182, 221, 132);
    --two:#678044;
    --three:#5A6F3B;
    
}
body {
    background-color: var(--two);
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

h1 {
    color: rgb(215, 228, 31);
}

label {
    color: white;
    font-weight: 900;
}

button {
    padding: 25px;
    font-size: 20px;
    background-color: var(--one);
    color: #424e30;
    border-radius: 10px;
    border: none;
    margin-top: 10px;
    cursor: pointer;
    font-weight: 500;
}

textarea {
    border-radius: 10px;
    width: 80vw;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    transition: 0.3s;
    border: none;
    outline: none;
}

textarea:focus {
    box-shadow: 0 0 15px rgba(251, 255, 0, 0.808);
    transition: 0.3s;
}

#output {
    background-color: var(--three);
    color: white;
}

#input {
    background-color: rgb(220, 226, 208);
    color: var(--three);
    height: 150px;
}