Spaces:
Running
Running
File size: 795 Bytes
0f65d37 0bcdffe 0f65d37 0bcdffe 0f65d37 0bcdffe 0f65d37 0bcdffe 0f65d37 0bcdffe 0f65d37 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
padding: 20px;
}
.container {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
max-width: 500px;
margin: auto;
}
h1 {
font-size: 22px;
color: #333;
}
input {
width: 80%;
padding: 8px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
background: #007bff;
color: white;
padding: 8px 15px;
border: none;
cursor: pointer;
border-radius: 5px;
}
button:hover {
background: #0056b3;
}
#result {
margin-top: 15px;
text-align: left;
padding: 10px;
}
img {
border-radius: 5px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
|