* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f1;
  color: #1f1f1f;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.box {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  padding: 40px;
  border: 1px solid #dddddd;
  border-radius: 12px;
  text-align: center;
}

h1 {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 600;
}

p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.5;
}

.joke {
  font-size: 22px;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 32px;
}

.small-text {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
}

.link {
  display: inline-block;
  color: #1f1f1f;
  text-decoration: none;
  border-bottom: 1px solid #1f1f1f;
  padding-bottom: 2px;
}

.link:hover {
  opacity: 0.7;
}