html,
body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.container {
  background-color: hsl(218, 23%, 16%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 15px;
  padding-bottom: 50px;
  border-radius: 10px;
  background-color: hsl(217, 19%, 24%);
  text-align: center;
  width: 440px;
  max-height: 400px;
}

* {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.card > header {
  font-size: 14px;
  color: hsl(150, 100%, 66%);
}

.card > .card-body {
  font-size: 28px;
  color: hsl(193, 38%, 86%);
}

.advice-btn {
  position: absolute;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  transform: translateY(50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: hsl(150, 100%, 66%);
  border: none;
  cursor: pointer;
}

.advice-btn:hover {
  box-shadow: 0px 0px 30px hsl(150, 100%, 66%);
}

.advice-logo {
  cursor: pointer !important;
}
