html, body { height: 100%; width: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; } button { font-size: 3rem; margin: 10px; padding: 20px; border: none; border-radius: 10px; cursor: pointer; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); } button:hover { box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7); } #scissors { background-color: #f5f5f5; color: #555; } #rock { background-color: #e74c3c; color: white; } #paper { background-color: #3498db; color: white; } #result { font-size: 2rem; margin: 10px; left: 50%; top: 50%; transform: translate(-50%, -50%); } #players{ display: flex; flex-direction: row; justify-content: space-between; width: 80%; } #choices{ display: flex; flex-direction: row; justify-content: space-between; width: 80%; }