* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  background: linear-gradient(to bottom, #1abc9c, #16a085); /* Change the colors to your desired gradient */
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  font-size: 3rem;
  margin: 0;
}

p {
  font-size: 1.5rem;
  margin: 1rem 0;
}

@media only screen and (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  
  p {
    font-size: 1.25rem;
  }
}
