@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=News+Cycle:wght@400;700&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sevillana&family=Spicy+Rice&display=swap');

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

body{
    background-color: hsl(47, 88%, 63%);
     display: flex; 
    align-items: center;
    justify-content: center; 
    height: 100vh;
    font-family: "Figtree", serif;
  
}
main{
    background-color:  hsl(0, 0%, 100%);
    border-radius: 15px;
    padding: 5px;
    margin: 25px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    color:hsl(0, 0%, 7%);
    /* box-shadow: 0, 0, 5px, black; */
   box-shadow: 7px 0 0px 2px rgba(0, 0, 0, 0.993);
      
}
img{
    width: 100%;
    max-width: 10%;
    border-radius: 15px;
    
}
#learn{
    background-color: hsl(47, 88%, 63%);
    font-weight: 800;
    max-width: 25%;
    text-align: center;
    padding: 2px;
    border-radius: 2px;
}
h1{
    font-size:1.2rem;
    text-align: left;
    font-weight: 800;
    margin-inline:15px ;
    padding-top: 10px;
}
 p{
  font-weight:600;
  font-size: 0.8rem;
  text-align: left;
  padding-top: 10px;
  margin-inline: 15px;
  line-height: 1.5;
  font-weight: 300;
  
}
.identity{ 
    display: flex;
    align-content: center;
    justify-content: left;
    padding-top: 10px;
    margin-inline: 15px;
    margin-bottom: 10px;
}
.identity p{
    font-weight: 800;
    padding: 2px;
    
}
h1:hover{
   color: hsl(47, 88%, 63%);
}