@import url("https://fonts.googleapis.com/css2?family=Graduate&family=Merriweather+Sans:wght@700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100vh;
  background: linear-gradient(25deg, #d64c7f, #ee4758 50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  position: absolute;
  top: 30px;
  width: 100%;
  font-family: "Graduate", cursive;
  color: #f7f7f7;
  font-size: 6.4rem;
  text-align: center;
}

.button {
  cursor: pointer;
  background-color: #f7f7f7;
  color: #000;
  font-size: 2.4rem;
  height: 5.6rem;
  padding: 0.8rem;
  font-family: "Merriweather Sans", sans-serif;
  border: none;
  border-radius: 0.6rem;
  box-shadow: 0 0.6rem 0 #ccc, 0 0.6rem 1.5rem -0.4rem #000;
  transition: box-shadow 0.2s ease-in-out, margin-top 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  width: 16rem;
}

.button:hover,
.button:focus {
  opacity: 0.9;
  outline: 0;
}

.button:active {
  box-shadow: none;
  margin-top: 0.6rem;
}

span {
  background: linear-gradient(25deg, #d64c7f, #ee4758 50%);
  background-size: 100%;
  letter-spacing: 0.2rem;
  background-repeat: repeat;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

@media screen and (max-width: 40rem) {
  .title {
    top: 4rem;
    font-size: 4rem;
  }
}