31 lines
491 B
CSS
31 lines
491 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f4f4f4;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
.container {
|
|
background: white;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
}
|
|
|
|
input {
|
|
padding: 10px;
|
|
width: 200px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 15px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#resultContainer {
|
|
margin-top: 20px;
|
|
}
|