@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@100;200;300;400;500;600;700;800;900&display=swap');

html, body {
  height: 100%;
}

body {
  background-color: #e9ecef;
}

body {
  font-family: 'Gothic A1', sans-serif;
}

.jumbotron {
  margin-bottom: 0;
  padding-bottom: 3.4rem;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.copied {
  animation: fadeOut 3s ease-in-out;
}