:root {
  /*  Colors */

  --White: hsl(0, 0%, 100%);

  --Slate-300: hsl(212, 45%, 89%);
  --Slate-500: hsl(216, 15%, 48%);
  --Slate-900: hsl(218, 44%, 22%);

  /* fonts */

  --Font-size-paragraph: 15px;

  --Weight1: 400;
  --weight2: 700;

  --font-family: "Outfit", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

body {
  height: 100vh;
  max-width: 100vw;

  display: flex;
  justify-content: center;
  align-items: center;

  background-color: var(--Slate-300);
  font-family: var(--font-family);
}

.content {
  width: 20rem;
  background-color: white;
  text-align: center;
  border-radius: 10px;
  padding: 20px 10px;
}

img {
  width: 18rem;
  height: 15rem;
  border-radius: 10px;
}

h1 {
  font-weight: var(--weight2);
  font-size: 20px;
  padding: 10px 18px;
}

p {
  font-size: var(--Font-size-paragraph);
  font-weight: var(--Weight1);
  padding: 10px 18px;
}

@media (max-width: 375px) {
  .content {
    margin: 28px;
  }
}
