* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  font-family: "Outfit";
}

.content {
  width: 100%;
  height: 100vh;
  background-color: var(--light-gray);

  display: flex;
  justify-content: center;
  align-items: center;
}

.card-container {
  width: 85%;
  height: 75%;
  max-height: 500.4px;
  max-width: 320px;

  display: flex;
  flex-direction: column;

  background-color: var(--white);
  border-radius: 1.2rem;
}

.card-container img {
  width: 100%;
  height: 65%;
  max-width: 100%;

  display: block;

  padding: 1.7rem;
  border-radius: 1rem;
}

.card-content {
  padding: 0 3rem;
}

.card-content p {
  text-align: center;
}

.card-content p:first-child {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 2.2rem;
}

.card-content p:last-child {
  font-weight: 300;
  color: var(--grayish-blue);
  margin-top: 1rem;
}
