SettingsMenu { position: absolute; z-index: 999; width: 100%; height: 100%; background-color: rgba(black .9); backdrop-filter: blur(10px); flex-direction: column; align-items: center; justify-content: center; opacity: 0; &.open { pointer-events: all; opacity: 1; } .body { padding: 20px; width: 40%; height: 75%; button.exit { color: white; position: absolute; right: 32px; top: 32px; padding: 12px 24px; font-size: 24px; background-color: rgba(salmon .5); text-shadow: 2px 2px 2px black; &:hover { background-color: rgba(salmon 1); } } } }