@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  background-color: #264653;
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.container {
  background-color: #2a9d8f;
  border-radius: 1rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.2);
  padding: 5rem 2rem;
  text-align: center;
  max-width: 100%;
  width: 80rem;
}

.container h3 {
  margin: 0;
  opacity: 0.5;
  letter-spacing: 2px;
  font-size: 2rem;
}

.container .joke {
  font-size: 3rem;
  letter-spacing: 1px;
  line-height: 4rem;
  margin: 5rem auto;
  max-width: 60rem;
}

.container .btn {
  background-color: #12464042;
  border: 0;
  border-radius: 1rem;
  color: #e8fcff;
  /* box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.2); */
  padding: 1rem 3rem;
  font-size: 1.6rem;
  cursor: pointer;
}

.container .btn:focus {
  outline: 0;
}

.container .btn:active {
  transform: scale(0.97);
}
