*{
    margin: 0;
    padding: 0;
    background-color:  hsl(0, 0%, 8%);
}
body{
    
    padding: 1rem;
    display: flex;
    justify-content: center;
    
    
    
}
#outerdiv{

    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 37rem;
    width: 22.5rem;    
    margin-top: 3rem;
    border-radius: 10px;
    background-color:   hsl(0, 0%, 12%);
    
}
.innerdiv{
    background-color:  hsl(0, 0%, 12%);
}

p{
    font-size: 14px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 1rem;
    background-color:  hsl(0, 0%, 12%);
    color:  hsl(0, 0%, 100%);
   
}
h1{
      
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 0.6rem;
  font-size: 22px;
  color: hsl(0, 0%, 100%);
  background-color:  hsl(0, 0%, 12%);

}
h5{
    color:  hsl(75, 94%, 57%);
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1.5rem;
    font-size: 12px;
    background-color:  hsl(0, 0%, 12%);
}

img{
    border-radius: 50%;
    height: 5rem;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    
   

}
button{
  margin: 0.7rem;
  padding: 0.9rem;
  width: 19.5rem;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  background-color: hsl(0, 0%, 20%);
  color:  hsl(0, 0%, 100%);
  border: 1px solid transparent;
}



button:hover{
    cursor:pointer ;
    color:  hsl(0, 0%, 8%);
    background-color: hsl(75, 94%, 57%);
}




/* === Mobile (up to 375px) === */
@media (max-width: 376px) {
  #outerdiv {
   height: 34rem;
   width: 17rem;
    
  }

  h1 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 0.75rem;
  }

  p {
    font-size: 0.75rem;
  }

  button {
    padding: 0.7rem;
    width: 80%;
    font-size: 0.700rem;
  }
}








































