body {
  padding: 0;
  margin: 0;
}

html {
  font-family: "Josefin Slab", "Helvetica";
  background: radial-gradient(ellipse at center, #ffffff 0%, #f2f2f2 100%);
  height: 100%;
  min-height: 460px;
}

/* TEXT */
h1,
h2,
h3,
h4,
h5 {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.25); /* smoother shadow */
  text-align: center;
  margin: auto;
  color: #333;
}

h1 { font-size: 68px; }
h2 { margin-bottom: 7px; font-size: 30px; }
h3 { font-size: 78px; }
h4 { font-size: 72px; letter-spacing: 2px; }
h5 { font-size: 45px; }

/* BUTTON (slightly improved but same style) */
button {
  padding: 10px;
  padding-bottom: 2px;
  background-color: deeppink;
  margin: 10px;
  color: white;
  text-shadow: none;

  box-shadow: 
    1px 0px 1px #be3077,
    0px 1px 1px hotpink,
    2px 1px 1px #be3077,
    1px 2px 1px hotpink,
    3px 2px 1px #be3077,
    2px 3px 1px hotpink;

  cursor: pointer;
  display: inline-block;
  margin-top: 11px;
  box-sizing: border-box;
  position: relative;
  user-select: none;

  border: 0px;
  font-size: 45px;
  font-family: "Josefin Slab", cursive;
  outline: 0px;

  transition: all 0.15s ease; /* NEW smoothness */
}

button:hover {
  background-color: #e21a62;
  transform: scale(1.03); /* subtle pop */
}

button:active {
  box-shadow: 
    1px 0px 1px #be3077,
    0px 1px 1px hotpink,
    2px 1px 1px #be3077;
  top: 2px;
  left: 3px;
  transform: scale(0.98);
}

/* LAYOUT */
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* NEW: better vertical centering */
  min-height: 100vh;
}

hgroup {
  margin-top: 60px; /* slightly tighter */
}

.btn-container {
  max-width: 170px;
}

/* FOOTER BAR */
.sharing {
  box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.15);
  background-color: #232323;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  color: #232323;
  box-sizing: border-box;
  padding: 12px;
  transition: box-shadow 300ms;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.sharing:hover {
  box-shadow: 0px 0px 0px 4px deeppink;
}

.sharing a,
.links {
  color: greenyellow;
  text-decoration: none;
}

.text {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue",
    Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #fff;
}

/* ADS / SPACING */
.unit {
  margin-top: 60px;
  width: calc(100vw - 20px);
  min-height: 280px;
  margin-bottom: 100px;
  display: flex;
  justify-content: center;
}

/* RESPONSIVE */
@media screen and (max-width: 650px) {
  h1, h3, h4 {
    font-size: 58px;
  }

  hgroup {
    width: 300px;
  }

  .text {
    font-size: 15px;
  }
}   
