
* {
    padding: 0;
    margin: 0;
  }
  body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: hsl(200, 102%, 90%);
  }
  h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin: 20px;
  }
  button {
    border: 3px solid hsl(9, 59%, 56%);
    border-radius: 50px;
    padding: 1em;
    font-size: 1rem;
    font-weight: bolder;
    transform: all 0.5ms ease;
  }

  button:hover {
    background-color: transparent;
    color: hsl(9, 59%, 56%);
    font-weight: bolder;
  }

  button:active {
    color: hsl(9, 59%, 66%);
  
}
@media (max-width:768px){
    h2{
    font-size: 2.5rem;

    }
}