@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
*{
  margin: 0;
  padding: 0;
}
  
body{
    background-color: hsl(0, 0%, 8%);
    font-family: "Inter", sans-serif;
}
.SM-card{
   border-radius: 10px;
   background-color: hsl(0, 0%, 12%);
   margin:80px auto;
   height: 550px;
   text-align: center;
   width: 330px;   
}
.jessica-pp{
    border-radius: 100%;
    margin-top: 30px;
    width: 70px;
}
.username{
    text-align: center;
    color: white;
    font-size: 25px;
    
    font-weight: 600;
}
.Location{
   text-align: center;
   color: hsl(75, 94%, 57%);
 
   font-weight: 600;
   padding-top: 12px;

}
.Position{
    text-align: center;
    color: white;
    
    font-size: 14px;
    padding-top: 16px;

}
.Block{
    border-radius: 10px;
    background-color:hsl(0, 0%, 20%);
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 250px;
    height: 35px;
    margin: auto;
    cursor:pointer
}
.Link{
    color: white;
    text-decoration: none;
    font-size: small;
  
    padding: 10px 20px;
}
.attribution {
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
    color:white;
    text-decoration: none;
  }
 .source{
    color: wheat;

  }
  .Block:hover{
    background-color: hsl(75, 94%, 57%);
    
  }
@media only screen and (min-width: 320px) and (max-width: 375px) {
    .SM-card{
        border-radius: 10px;
        background-color: hsl(0, 0%, 12%);
        margin:80px auto;
        height: 480px;
        text-align: center;
        width: 280px;   
     }
}
@media only screen and (max-width: 319px)  {
    .SM-card{
        border-radius: 10px;
        background-color: hsl(0, 0%, 12%);
        margin:80px auto;
        height: 480px;
        text-align: center;
        width: 220px;   
     }
     .Position{
        font-size: 12px;
    }
    .Block{        
        width: 200px;
        height: 35px;  
    }
}
