@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;800&display=swap");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: hsl(218deg, 23%, 16%);
  font-family: "Manrope", sans-serif;
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 95vh;
}

.joke-container {
  background-color: hsl(217deg, 19%, 24%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem;
  padding: 2rem;
  max-width: 700px;
  border-radius: 20px;
  font-size: 1rem;
  position: relative;
}
.joke-container__id {
  color: hsl(150deg, 100%, 66%);
  letter-spacing: 3px;
  margin: 1rem;
}
.joke-container__joke-text {
  color: hsl(193deg, 38%, 86%);
  font-size: 1.75rem;
  font-weight: 800;
  text-align: center;
}
.joke-container .divider {
  margin: 2rem;
  width: auto;
}
.joke-container .icon-box {
  background-color: hsl(150deg, 100%, 66%);
  padding: 13px;
  border-radius: 50%;
  position: absolute;
  bottom: -26px;
  cursor: pointer;
}
.joke-container .icon-box:hover {
  box-shadow: 0px 0px 50px 5px rgb(0, 255, 128);
}
.joke-container .icon-box svg {
  display: block;
  transform: scale(0.9);
}

footer .attribution {
  text-align: center;
  color: #fff;
}
footer a {
  text-decoration: none;
  color: hsl(150deg, 100%, 66%);
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 10px;
  }

  .joke-container .icon-box:hover {
    box-shadow: 0px 0px 20px 3px rgb(0, 255, 128);
  }
}/*# sourceMappingURL=main.css.map */