* {
  box-sizing: border-box;
}

html {
  height: 100vh;
}
body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 3em 0;
  height: 100vh;
  background-color: #55b9f3;
  background-size: cover;
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  max-width: 500px;
  padding: 1.5em;
  background-color: #55b9f3;
  color: white;
}

.show-guess {
  padding: 1.25em;
  background-color: white;
  color: #fff;
  font-size: 3.5em;
  font-weight: bold;
  border-radius: 50px;
  background: #55b9f3;
  box-shadow: 20px 20px 60px #489dcf, -20px -20px 60px #62d5ff;
}

.response {
  text-align: center;
  font-size: 1.25em;
  line-height: 1.8;
  width: 70%;
  border-radius: 30px;
}
