html,
body {
  height: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

@font-face {
  font-family: "Manrope";
  src: url(./assets/fonts/Manrope-ExtraBold.ttf);
  font-weight: 800;
}
:root {
  --clr-primary-1: 193, 38%, 86%;
  --clr-primary-2: 150, 100%, 66%;
  --clr-neutral-1: 217, 19%, 38%;
  --clr-neutral-2: 217, 19%, 24%;
  --clr-neutral-3: 218, 23%, 16%;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.25538rem;
  color: hsl(var(--clr-primary-2));
  background-color: hsl(var(--clr-neutral-3));
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 500px) {
  body {
    font-size: 0.6875rem;
    letter-spacing: 0.21606rem;
  }
}

h1 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.01875rem;
  color: hsl(var(--clr-primary-1));
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.5rem;
    letter-spacing: -0.01606rem;
  }
}

.container {
  position: relative;
  max-width: 33.75rem;
  border-radius: 0.9375rem;
  background-color: hsl(var(--clr-neutral-2));
  box-shadow: 30px 50px 80px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 3rem;
  margin-inline: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 500px) {
  .container {
    padding: 2.5rem 1.5rem;
  }
}

.title {
  margin-bottom: 1.5rem;
}

.advice-text {
  margin-bottom: 2.5rem;
}
@media (max-width: 500px) {
  .advice-text {
    margin-bottom: 1.5rem;
  }
}

.divider-pic {
  margin-bottom: 1.5rem;
}

.btn {
  position: absolute;
  bottom: -2rem;
  transform: translateX(-50%);
  left: 50%;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: hsl(var(--clr-primary-2));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
}
.btn:hover, .btn :focus {
  box-shadow: 0 0 4rem hsl(var(--clr-primary-2), 0.75);
}
.btn img {
  color: hsl(var(--clr-neutral-3));
}

.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

/*# sourceMappingURL=styles.css.map */
