style.css•1.44 kB
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f5f5f5;
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
}
.container {
max-width: 600px;
margin: 50px auto;
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s ease;
}
.container:hover {
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
textarea {
width: 100%;
height: 120px;
padding: 12px;
font-size: 16px;
line-height: 1.5;
border: 1px solid #ccc;
border-radius: 6px;
box-sizing: border-box;
resize: vertical;
}
button {
margin-top: 20px;
padding: 12px 25px;
font-size: 16px;
font-weight: bold;
background-color: #4caf50;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #43a047;
}
#answerBox {
margin-top: 25px;
font-size: 18px;
color: #333;
line-height: 1.6;
background: #f9f9f9;
padding: 15px;
border-radius: 6px;
border-left: 4px solid #4caf50;
}
/* Optional: Responsive */
@media (max-width: 640px) {
.container {
margin: 20px;
padding: 20px;
}
textarea {
height: 100px;
}
button {
width: 100%;
}
}