/* Base styles shared across all pages */

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

body {
  font-family: "Inter", sans-serif;
  background: #fffef7;
  color: #2d2d2d;
  line-height: 1.6;
}

.container {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 30px;
  z-index: 1;
}

nav {
  margin-bottom: 60px;
  text-align: center;
}

.nav-sketch {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #2d2d2d;
  border-radius: 30px;
  background: #fff;
  transform: rotate(-1deg);
}

nav a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin: 0 15px;
}

header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

h1 {
  font-family: "Permanent Marker", cursive;
  font-size: 56px;
  margin-bottom: 15px;
  color: #2d2d2d;
  transform: rotate(-2deg);
  display: inline-block;
}

.tagline {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  color: #999;
  font-size: 14px;
}

footer a {
  color: #999;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  color: #4ecdc4;
}

@media (max-width: 768px) {
  h1 {
    font-size: 42px;
  }
}

/* Components */
.back-link {

  /* position: absolute; */
  left: 0;
  top: 10px;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid #2d2d2d;
  border-radius: 30px;
  background: #fff;
  transition: all 0.2s;

    position: static;
    display: inline-block;
    margin-bottom: 20px;

}

.back-link:hover {
  background: #4ecdc4;
  transform: translateX(-5px);
}
