body {
  color: rgb(222, 222, 222);
  background-color: rgb(19, 19, 19);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overlay {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: rgba(0, 0, 0, 0.8);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.8) 80%);
}

.notification {
  --border-color: rgb(51, 51, 51);
  --background-color: rgb(19, 19, 19);
  --corner: 20px;
  --stroke: 1px;
  --inner-corner: calc(var(--corner) - (0.58578643762 * var(--stroke)));
  position: relative;
  pointer-events: none;
  padding: 20px;
  min-width: 600px;
  display: flex;
}
.notification:before, .notification:after {
  content: "";
  position: absolute;
}

.notification:before {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--border-color);
  flex-shrink: 0;
  clip-path: polygon(var(--corner) 0, 100% 0, 100% calc(100% - var(--corner)), calc(100% - var(--corner)) 100%, 0 100%, 0 var(--corner));
  transition: 0.15s;
  z-index: -1;
}

.notification:after {
  top: var(--stroke);
  left: var(--stroke);
  bottom: var(--stroke);
  right: var(--stroke);
  background-color: var(--background-color);
  clip-path: polygon(var(--inner-corner) 0, 100% 0, 100% calc(100% - var(--inner-corner)), calc(100% - var(--inner-corner)) 100%, 0 100%, 0 var(--inner-corner));
  z-index: -1;
}

.logo {
  --size: 40px;
  margin-right: 20px;
}

.notification-text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: auto;
  padding-right: 60px;
}

h1 {
  font-size: 18px;
}

p {
  font-family: "KlavikaWebBasicRegular";
  font-size: 14px;
  color: rgb(108, 108, 108);
}

h1 + p {
  margin-left: 10px;
}

.hotkey {
  font-family: "KlavikaWebBasicRegular", sans-serif;
  position: relative;
  font-size: 15px;
  height: 30px;
  border: 1px solid currentcolor;
  min-width: 30px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotkey + h1 {
  margin-left: 15px;
}

.hotkey + .hotkey {
  margin-left: 30px;
}
.hotkey + .hotkey:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 30 30'><rect x='14' y='10' width='2' height='10'/><rect x='10' y='14' width='10' height='2' /></svg>");
  background-color: rgb(222, 222, 222);
  left: -31px;
  top: -1px;
  bottom: -1px;
}

.overlay {
  opacity: 0;
  transition: 0.1s;
}

.notification {
  transform: translateY(-100%);
  transition: 0s;
}

body.active .overlay {
  opacity: 1;
  transition: 0.25s;
}
body.active .notification {
  margin-top: 20px;
  transform: translateY(0);
  transition: 0.25s;
}