* {
     box-sizing: border-box; 
  }
  img{
    max-width: 100%;
  }
body{
  background-image:linear-gradient(#607190,#e4e3e1, #f5d3d1);
 
 margin: 0;
 padding:0;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 height: 100vh;
}

.response-btn{
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background-color: #ffe6e6;
  color:hsl(219, 20%, 47%) ;
  transition: background-color 0.3s ease;
}
.response-btn:hover {
  background: linear-gradient(#607190,#e4e3e1, #f5d3d1);
  
  transform: scale(1.05);
}