@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Source+Serif+Pro:ital,wght@0,300;0,400;1,300&display=swap");

:root {
  --font-family: "Source Serif Pro";
  --bgk-color: #1d066a;
  --primary-color: #fcc8d1;
}

body {
  /*background-color: var(--bgk-color);*/
  background: rgb(63, 94, 251);
  background: linear-gradient(
    to right,
    #e55d87 0%,
    #5fc3e4 51%,
    #e55d87 100%
  );
  color: var(--bgk-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  font-family: var(--font-family);
}

h1 {
  font-size: 5em;
  font-weight: 300;
}

h2 {
  font-size: 3.5em;
  font-weight: 200;
  margin-top: 25px;
}

h3 {
  font-size: 2em;
  font-weight: 200;
  margin-top: 25px;
}

.mensagem {
  font-size: 1.5em;
  font-weight: 200;
  margin-top: 45px;
}

.box {
  border: 2px solid var(--primary-color);
  border-radius: 2%;
  background-color: var(--primary-color);
  color: var(--bgk-color);
  display: inline-block;
  padding: 20px;
  margin: 35px;
  font-size: 9em;
}
.btn-jogar {
  background-image: linear-gradient(
    to right,
    #e55d87 0%,
    #5fc3e4 51%,
    #e55d87 100%
  );
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: block;
}

.btn-jogar:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

@media only screen and (max-width: 200px) {
  .mensagem{
    font-size: 1em;
  }
  .h1{
    font-size: 2em;
  }
  .h2{
    font-size: 1.5em;
  }
  .btn-jogar{
    margin: 8px;
    padding: 10px 30px;
  }
}
