@import url("colors.css"); * { margin: 0; padding: 0; box-sizing: border-box; } body { background-color: var(--special-black); } .cube { display: flex; flex-direction: column; align-items: center; } .btn { color: var(--special-white); background-color: linear-gradient(#e50914, black); padding: 5px 10px; font-size: 18px; margin-top: 20px; margin-bottom: 20px; } .result { text-align: center; margin-top: 20px; /* Nastaví pevnou výšku tlačítka */ height: 46px; } .result p { color: var(--special-white); font-size: 20px; } .reset-button { display: flex; flex-direction: row; justify-content: center; } .reset-button a { color: #e5e5e5; background-color: linear-gradient(black, #e50914); padding: 5px 10px; font-size: 18px; margin-top: 20px; text-decoration: none; } .cube-image { width: 122px; height: 122px; }