/* SillyRabbit.co — Last updated: 2026-03-10 16:20:00 */

@font-face {
  font-family: "Source Serif 4";
  src: url("fonts/source-serif-4-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background: #fafafa;
  color: #000000;
  height: 100dvh;
  overflow: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  position: relative;
  text-align: center;
}

.wordmark {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: min(10vw, 120px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.tagline {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 36px;
  padding-left: 0.35em;
}

.btn {
  display: inline-block;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  border: 1px solid #000000;
  padding: 12px 32px;
  margin-top: 36px;
  text-align: center;
}

.btn:hover {
  background: #000000;
  color: #fafafa;
}

.rabbit {
  position: absolute;
  left: 100%;
  top: -100px;
  height: 260px;
  width: auto;
  margin-left: -48px;
  /* no flip — rabbit faces right */
}

@media (max-width: 768px) {
  .logo {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wordmark {
    font-size: min(12vw, 60px);
  }

  .rabbit {
    position: static;
    display: block;
    height: 80px;
    margin: 0 auto 12px;
    order: -1;
  }

  .tagline {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-top: 20px;
    padding-left: 0.12em;
  }
}
