/* Outfit */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/* Variables */
:root {
  --slate-300: hsl(212, 45%, 89%);
  --slate-500: hsl(216, 15%, 48%);
  --slate-900: hsl(218, 44%, 22%);
  --base-font: 15px;
  --font-family: "Outfit", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
p {
  font-size: var(--base-font);
  color: var(--slate-500);
}
body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--slate-300);
  font-family: var(--font-family);
}
.container {
  background: white;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  width: 340px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.container .img img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}
.container .text h2 {
  margin-bottom: 20px;
  color: var(--slate-900);
}
.container .text p {
  margin-bottom: 20px;
}
@media (min-width: 300px) and (max-width: 600px) {
  .container {
    width: 300px;
  }
}
