/*
  1. Use a more-intuitive box-sizing model.
*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  3. Allow percentage-based heights in the application
*/
html,
body {
  height: 100%;
  font-family: "Outfit", sans-serif;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  6. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  7. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  8. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  9. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

a {
  text-decoration: none;
}

body {
  background-color: hsl(212, 45%, 89%);
}
body main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
body main .attribution {
  margin-top: 20px;
}
body main .img-wrapper {
  width: 288px;
  margin: 16px;
}
body main .img-wrapper img {
  border-radius: 20px;
}
body main .card-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  width: 320px;
  height: 497px;
  border-radius: 20px;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0px 25px 25px rgba(0, 0, 0, 0.0476518);
}
body main .card-wrapper h1 {
  font-size: 1.375rem;
  margin: 0px 16px 0px 16px;
  color: hsl(218, 44%, 22%);
}
body main .card-wrapper p {
  margin: 16px 32px 0px 32px;
  font-size: 0.937rem;
  font-weight: 400;
  color: hsl(220, 15%, 55%);
  line-height: 19px;
  text-align: center;
  letter-spacing: 0.1875px;
}/*# sourceMappingURL=main.css.map */