body{
    background-color: #121212;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}

::selection {
    background-color: #ffcc00;
    color: #000000;
}

::-webkit-scrollbar {
    width: 12px;
}

html {
    scrollbar-width: thin;
}

.main {
    margin-top: 12%;
    text-align: center;
    border: 1px solid silver;
    padding: 32px 32px;
    border-radius: 24px;
    margin-left: 12px;
    margin-right: 12px;
}

.big_text{
    font-size: xx-large;
    margin: 0px 0px 24px 0px;
}

.copy_scripts {
  align-items: center;
  appearance: none;
  background-color: #FCFCFD;
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,#D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395A;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono",monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s,transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow,transform;
  font-size: 18px;
}

.copy_scripts:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.copy_scripts:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.copy_scripts:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}