* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: x-large;
  font-weight: 700;
  background-color: black;
  color: white;
  text-align: center;
  font-family: 'Inter Tight', sans-serif;
  user-select: none;
  margin-block: 2.5rem;
}

p {
  margin-block: 1rem;
}

/**/
.quack {
  transition: .1s ease;
}

.quack:hover {
  cursor: default;
  color: rgb(146, 14, 14);
}

/**/

.container {
  max-width: 28.125rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

img {
  width: 100%;
  border-radius: 0.9375rem;
  transition: .1s ease-in-out;
}

img:active {
  transform: scale(110%);
}

.jh {
  margin-block-start: 1.875rem;
  font-size: larger;
  font-weight: 400;
}

/*BUTTON*/
button {
  padding: 15px 25px;
  margin-top: 2rem;
  border: unset;
  border-radius: 15px;
  color: #212121;
  z-index: 1;
  background: #e8e8e8;
  position: relative;
  font-weight: 1000;
  font-size: 17px;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  -webkit-transition: all 250ms;
  transition: all 250ms;
  overflow: hidden;
}
button a{
    text-decoration: none;
    color: #212121;
}
button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  border-radius: 15px;
  background-color: #212121;
  z-index: -1;
  -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
  -webkit-transition: all 250ms;
  transition: all 250ms
}

button:hover {
  color: #e8e8e8;
}

button:hover::before {
  width: 100%;
}

/**/
@media all and (min-width: 19.9375rem) and (max-width: 26.5rem) {
  body {
    padding: 1.25rem;
  }
}
