/* Center the container */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: aqua; /* Set the background color */
}

.container {
    width: 80%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}

/* Animation config in CSS for tranformation */
span {
    opacity: 0;
    transition: all 1s ease;
    transform: translateY(50px);
    display: inline-block;
}

span.fade {
    opacity: 1;
    transform: translateY(0px);
}

/* Style the textarea */
textarea {
    align-items: center;
    width: 300px;
    height: 150px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
  
/* Style the button */
button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
