@font-face { font-family: Rubik; src: url(https://cdn.phazed.xyz/fonts/rubik/Rubik-VariableFont_wght.ttf); } body{ background: #000; margin: 0; font-family: Rubik, 'Courier New'; overflow: hidden; } * { box-sizing: border-box; } .loading{ position: fixed; z-index: 10000; top: 0; left: 0; width: 100%; height: 100%; background: black; display: flex; opacity: 1; color: white; justify-content: center; align-items: center; } .confirmation-box{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 15; background: rgba(0, 0, 0, 0.76); transition: 0.25s; } .confirmation-box-container{ position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; text-align: center; background: #9995; padding: 10px; width: 60%; border-radius: 10px; box-shadow: #000 0 0 10px; font-size: 18px; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); } .button-danger{ display: inline-block; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); padding: 10px; background: rgba(255, 0, 0, 0.333); box-shadow: #0005 inset 0 0 10px; border-radius: 50px; margin: 0 10px; cursor: pointer; user-select: none; -webkit-user-select: none; width: 200px; transition: 0.25s; } .button{ display: inline-block; padding: 10px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); background: #9995; box-shadow: #0005 inset 0 0 10px; border-radius: 50px; margin: 0 10px; cursor: pointer; user-select: none; -webkit-user-select: none; width: 200px; transition: 0.25s; } .button:hover{ box-shadow: #000a inset 0 0 10px; } .button-danger:hover{ box-shadow: #000a inset 0 0 10px; } img{ max-width: 100%; max-height: 100%; }