body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4e4c1;
  font-family: sans-serif;
  overflow: hidden;
}

.header {
  position: absolute;
  top: 40px;
  text-align: center;
  width: 100%;
}

.header h2 {
  margin: 0;
  font-size: 24px;
  color: #5a4a3a;
}

.header p {
  margin: 5px 0 0;
  color: #5a4a3a;
  font-size: 20px;
  /*font-weight: bold;*/
}

.container {
  text-align: center;
}

.cookie {
  width: 300px;
  cursor: pointer;
  transition: transform 0.2s;
}

.cookie:hover {
  transform: scale(1.05);
}

.fortune {
  margin-top: 25px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  min-height: 24px;
}

.time {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
}

.buttons {
  display: none;
  margin-top: 20px;
}

.share1 {
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 15px;
  text-decoration: none;
  color: #fff;
  background: #8b7d6b;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
}

.share2 {
  display: inline-block;
  margin-bottom: 15px;
  text-decoration: none;
  color: #fff;
  background: #8b7d6b;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
}

.reset {
  display: block;
  margin: 0 auto;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 14px;
}
