@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat.ttf') format('truetype');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3a3a3a;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  background: -webkit-linear-gradient(#ff8854, #ff645c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer {
  font-family: sans-serif;
  position: fixed;
  bottom: 5px;
  width: 100vw;
  height: 2vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  h1 {
    font-size: 3rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  h1 {
    font-size: 3rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  h1 {
    font-size: 5rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  h1 {
    font-size: 7rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  h1 {
    font-size: 8rem;
  }
}

/* Extra extra large devices (very large screens, 1400px and up) */
@media (min-width: 1400px) {
  h1 {
    font-size: 10rem;
  }
}
