/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

:root {
  --white: hsl(0, 0%, 100%);
  --light-grey: hsl(212, 45%, 89%);
  --grayish-blue: hsl(220, 15%, 55%);
  --dark-blue: hsl(218, 44%, 22%);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-grey);
}
.card {
  width: 300px;
  padding: 15px;
  background-color: var(--white);
  border-radius: 8px;
}
.card img {
  max-width: 100%;
  border-radius: 10px;
}
.content {
  padding: 15px;
  text-align: center;
}
.content h2 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--dark-blue)
}
.content p {
  color: var(--grayish-blue);
  font-size: 13px;
}