html{
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body{
  background-color: var(--Slate300);
}
:root{
  --Slate300: hsl(212, 45%, 89%);
  --Slate500: hsl(216, 15%, 48%);
  --Slate900: hsl(218, 44%, 22%);
}
main{
  height: 97vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container{
  background-color: #fff;
  display: flex;
  height: 350px; width: 220px;
  flex-direction: column;
  align-items: center;
  border-radius: 14px;
  text-align: center;
  transition:  transform .2s;


}
img{
  width: 200px;
  border-radius: 7px;
  margin-top: 11px;
  margin-bottom: 20px;
}
h4{
  width: 200px;
  margin-bottom: 13px;
  color: var(--Slate900);
}
p{
  color: var(--Slate500);
  font-size: 11px;
  width: 190px;
  line-height: 1.5;
}
.container:hover{
  transform: translate(3px, 0);
  cursor: pointer;
}
.attribution { 
  font-size: 13px; text-align: center; 
}
.attribution a {
 color: hsl(228, 57%, 27%); 
}