@import url('https://fonts.google.com/specimen/Figtree');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
}
body{
    height: 100vh;
    background-color: hsl(47, 88%, 63%);
   display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}


main{
    background-color: hsl(0, 0%, 100%);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    width: 340px;
    border-radius: 20px;
    border: 2px solid hsl(0, 0%, 7%);
    box-shadow: 5px 5px 0px hsl(0, 0%, 7%)
}
main img{
    width: 100%;
    border-radius: 20px;
}
main .tag{
    background: hsl(47, 88%, 63%);
    display: inline-block;
    padding: 0.1rem 0.6rem;
    border-radius: 5px;
    font-weight: bold;
}
main p{
    margin-top: 0.5rem;
    font-size: 16px;
    color: hsl(0, 0%, 42%);
}
.footer{
   display: flex;
   align-items: center; 
   gap:0.6rem;
   margin-top: 0.6rem;
}
.footer img{
    width: 30px;
    height: 30px;
    border-radius: 100%;
}
.attribution {
    margin-top: 1rem;
  font-size: 11px;
  text-align: center;
 
}
@media  screen and (max-width: 380px) {
    main{
        width: 320px;
    }
    
}
.attribution a {
  color: hsl(228, 45%, 44%);
}
