body {
  font-family: "Trebuchet MS", sans-serif;
  margin: 5%;
  background: #1d1d1d;
  color: #ebebeb;
}

pre {
  white-space: pre-wrap;
  padding: 15px;
  background-color: #333;
}

a {
  color: #ffffaf;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

a:hover, a:focus {
  transform: translateY(1px);
}

.buttons {
  display: flex;
  justify-content: center; 
  align-items: center;
  height: 100%;
}

button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  background: #2f2f2f;
  color: #DFDEDF;
  user-select: none;
  margin: 0 2px;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-bottom: 1%;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

button:focus,
button:hover{
  box-shadow: inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2), 0px 0.5px 1px rgba(0, 0, 0, 0.1), 0px 0px 0px 3.5px rgba(58, 108, 217, 0.5);
  outline: 0;
}

button:active {
    background: #111;
    position: relative;
    transform: translateY(2px);
}

.cover-art {
  margin: 4%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.background-gradient {
  width: 30%;
  height: 30%;
  overflow: auto;
  min-width: 30%;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.background-gradient::-webkit-scrollbar {
  display: none;
}

.intro {
    text-align: center;
    font-size: x-large;
}

.disclaimer {
  opacity: 75%;
  transition: 1s;
}

.disclaimer:hover,
.disclaimer:focus {
  opacity: 100%
}
