:root { --main-color: #21344a; --background-color: #333; --own-white: #FDF0E7; } * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; } body { background-color: var(--background-color); color: #333; font-size: 16px; line-height: 1.5; display: flex; flex-direction: column; min-height: 100vh; margin: 0; } header { background-color: var(--main-color); color: var(--own-white); text-align: center; flex-shrink: 0; padding: 20px 0; position: relative; } header h1 { font-size: 50px; margin-bottom: 5px; } header p { font-size: 20px; } header button { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); background-color: var(--own-white); color: var(--main-color); padding: 10px 15px; font-size: 1rem; font-weight: bold; border-radius: 10px; border-style: solid; border-color: #000; border-width: 1px; cursor: pointer; transition: background-color 0.3s, color 0.3s; text-decoration: none; } header button:hover { background-color: #f5f5f5; color: var(--main-color); } header button a { text-decoration: none; color: inherit; } #order { flex-shrink: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 20px; padding: 30px; margin-top: 20px; justify-content: space-between; } .food { background-color: var(--own-white); padding: 15px; border-radius: 8px; text-align: center; flex: 1 1 calc(25% - 20px); box-sizing: border-box; } .food p { font-size: 20px; margin-bottom: 10px; } .food button { background-color: var(--main-color); color: white; border: none; padding: 10px; font-size: 16px; border-radius: 5px; cursor: pointer; width: 100%; transition: background-color 0.3s; } .food button:hover { background-color: #972615; } #display { flex-grow: 1; overflow-y: auto; background-color: var(--background-color); color: white; padding: 10px; font-family: monospace; white-space: pre-wrap; box-sizing: border-box; height: 0; max-height: calc(100vh - 200px); overflow-y: scroll; } .log-message { padding: 5px; border-radius: 5px; animation: fadeOut 5s forwards; overflow-y: hidden; justify-content: center; text-align: center; align-items: center; } .log-message.info { color: var(--own-white); font-size: 20px; } .log-message.error { color: #f44336; } .log-message.warn { color: #ffc107; } @keyframes fadeOut { 0% { opacity: 1; } 80% { opacity: 1; } 100% { opacity: 0; } } #errorscript { color: red; font-size: 30px; font-weight: bold; text-align: center; display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; background-color: rgba(255, 255, 255, 0.8); box-sizing: border-box; border-radius: 15px; padding: 20px; } footer img { size: 15px; } footer { flex-shrink: 0; background-color: var(--main-color); color: white; text-align: center; padding: 20px; display: flex; justify-content: center; align-items: center; gap: 20px; } footer p { font-size: 20px; }