@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;

  /*Variables*/
  --Slate300: hsl(212, 45%, 89%);
  --Slate500: hsl(216, 15%, 48%);
  --Slate900: hsl(218, 44%, 22%);
}

body {
  background-color: var(--Slate300);
  height: 100vh;
  align-content: center;
  
}
.container {
    width: 90%;
    max-width: 375px; 
    background-color: white;
    border-radius: 5%;
    margin: 0 auto;
   
}

h1 {
  font-size: 25px;
}

h1,p {
  text-align: center;
}

p {
  font-size: 15px;
  margin-top: 1.5rem;
  padding-bottom: 3rem;
  color:var(--Slate500);

}

img {
  padding:1rem;
  border-radius: 8%;
  width: 100%;
 }