body {
  background-image: url();
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  margin: 2px;
  padding: 0;
  font-family: sans-serif;
}

.btn-gold {
  background-color: #3d3d1f;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #fdfdfd;
  padding: 8px 16px;
  margin-bottom: 2.8em;
  box-shadow: inset 0 0 0 1px #666, -3px 3px 6px rgba(0, 0, 0, 0.6);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s ease-in-out;
}
.btn-gold:hover {
  background-color: #b2b266;
  color: #222;
}

.diagonal-gradientr {
  background: linear-gradient(to bottom right, #33331a, silver, #FBFBFB, #33331a);
}
.headGradient {
  background: linear-gradient(to bottom right, #33331a, silver, #FBFBFB, #33331a);
  border-radius: 12px 4px 12px 4px;
  width: 100%;
  font-size: 25px;
  animation: fadeInSlide 1.2s ease;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.noirFont {
  font-family: 'Special Elite', monospace;
  font-style: normal;
  font-weight: normal;
  color: black;
  letter-spacing: 1px;
}
@media (min-width: 600px) {
    #results-container {
      overflow-x: auto;
    }

    #results {
      white-space: nowrap;
    }
  }

  @media (max-width: 599px) {
    #results {
      white-space: normal;
    }
  }

  #results {
    margin-top: -7px;
    margin-left: 5%;
    margin-right: 5%;
    border: 3px double black;
    padding: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
  }
.loader {
  font-size: 16px;
  color: goldenrod;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}
    .redirecting {
      display: none;
      font-size: 14px;
      color: #555;
      margin-top: 8px;
      text-align: center;
    }
