/* Default style for large screens */
.headers {
  display: block;
}

.headers h1 {
  font-size: 1.8vw;
}

.headers h2 {
  font-size: 1.2vw;
}

/* Style for small screens */
@media (max-width: 768px) {
  .headers h1,
  .headers h2 {
    font-size: 7vw;
    text-align: center;
  }

  .headers h2 {
    font-size: 4vw;
  }
}