| body { | |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | |
| } | |
| h1 { | |
| font-weight: bold; | |
| font-size: 4em; | |
| margin-bottom: 30px; | |
| } | |
| form { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| margin-bottom: 40px; | |
| } | |
| select, | |
| input, | |
| button { | |
| padding: 10px; | |
| font-size: 18px; | |
| border-radius: 4px; | |
| border: 1px solid #ccc; | |
| appearance: none; | |
| box-sizing: border-box; | |
| margin-bottom: 10px; | |
| } | |
| select { | |
| width: 100%; | |
| } | |
| button { | |
| cursor: pointer; | |
| background-color: #5da8de; | |
| color: white; | |
| padding: 10px 20px; | |
| width: 100%; | |
| border: none; | |
| box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | |
| transition: background-color 0.2s ease-in; | |
| } | |
| button:hover { | |
| background-color: #498ec3; | |
| } | |
| #generated-image { | |
| height: 480px; | |
| width: 850px; | |
| margin: 0 auto; | |
| object-fit: cover; | |
| } |