.background { display: none; position: absolute; top: 0; left: 0; height: 100%; width: 100%; background-color: #00000062; z-index: 10; } .active { display: flex; align-items: center; justify-content: center; } .container { top: 0; left: 0; background-color: var(--color-dark); padding: 40px; width: 300px; border-radius: 10px; z-index: 11; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--color-light); } .container__close { cursor: pointer; background: none; border: none; margin-left: auto; color: inherit; font-size: 2rem; &:hover { transform: scale(0.9); } } .container__title__span { font-family: "JetBrains Mono", monospace; color: var(--color-yellow); } .container__actions { margin-top: 20px; display: flex; width: 100%; justify-content: space-around; } .container__actions button { padding: 10px 20px; cursor: pointer; width: 12rem; text-align: center; background-color: var(--color-yellow); color: var(--color-dark); border: none; border-radius: 10px; font-size: 1rem; margin: 0 10px; &:hover { transform: scale(1.1); } }