:root {
  --white: hsl(0, 0%, 100%);
  --light-gray: hsl(212, 45%, 89%);
  --grayis-blue: hsl(220, 15%, 55%);
  --dark-blue: hsl(218, 44%, 22%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
  background-color: var(--light-gray);
  font-family: "Outfit", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 450px;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 20px;
  margin-top: 100px;
}

img {
  width: 270px;
  height: 270px;
  border-radius: 10px;
}

.header {
  width: 300px;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  padding: 16px;
}

.description {
  width: 240px;
  font-size: 15px;
  text-align: center;
  color: gray;
}

footer {
  text-align: center;
  position: absolute;
  margin-top: 700px;
}
