:root {
  --padding-size: 10px;
}

.input {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin-top: 32px;
  padding: 16px;
  gap: 16px;
  border: 4px solid black;
  border-radius: 4px;
}

.container {
  display: flex;
  flex-direction: column;
  width: 500px;
  align-items: center;  
  margin-inline: auto;
}

.box.opaque{ 
  background-color: rgba(54, 46, 46, 0.96);
}

.box {
  background-color: rgba(54, 46, 46, 0.804);
  border-radius: 16px;
  box-shadow: inset 0 0 80px black;
  border: solid 2px rgb(48, 48, 48);
}

.scroller-container {
  overflow-y: scroll;
  overscroll-behavior: none;
  width: calc(100vw - 2 * var(--padding-size));
  height: calc(100vh - 2 * var(--padding-size));
  padding: var(--padding-size);
}

body {
  background: black;
  background: linear-gradient(160deg, rgba(237, 12, 94, 1) 0%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 75%, rgba(5, 118, 247, 1) 100%);
  min-height: 100vh;
  color: white;
  margin: 0;
  overscroll-behavior: none;
}
html {
  overscroll-behavior: none;
}

button {
  font: 16px 500 Arial, sans-serif;
  color: #ffffff;
  background-color: #505353;
  border: 2px solid #111213;
  border-radius: 4px;
  outline: none;
  padding: 4px 4px;

  cursor: pointer;
  
  transition: all 0.3s ease-in-out;
}

/* button:focus {
  border: cyan solid 2px;
} */

button:hover {
  box-shadow: 0px 0px 4px 3px greenyellow;
  background-color: #2d2f2f;
}

button:disabled {
  color: rgb(167, 165, 165);
  background-color: #2d2f2f;
  cursor: not-allowed;
  box-shadow: none;

  :hover {
    box-shadow: none;
  }
}

button.block {
  width: 100%;
}

button.icon {
  aspect-ratio: 1;
  text-align: center;
  min-width: 2em;
  min-height: 2em;
  padding: .25em;
  border-radius: 50%;
}

button.dark {
  box-shadow: none;
}

button.blank {
  background: transparent;
  border: none;
  margin: none;
  box-shadow: none;
  width: min-content;
}

/* button.blank:focus {
  border: cyan solid 2px;
  border-radius: 16px;
} */