@import url('https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&family=Quicksand:wght@400;600&family=Sniglet&display=swap');

:root {
  --pink: #d84b91;
  --purple: #b493d4;
  --yellow: #ca9b19;
  --orange: #e27b26;
  --aqua: #49aca3;
  --bg: #ffedd1;
  --text: #fff;
  --font-header: 'Cherry Bomb One', monospace;
  --font-body: 'Quicksand', sans-serif;
  --font-accent: 'Sniglet', serif;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: var(--font-body);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: 3rem;
}

h1 {
  margin: 1rem 0;
  letter-spacing: .05rem;
  font-family: var(--font-header);
}

h2 {
  margin: 1rem 0;
  letter-spacing: .05rem;
  font-family: var(--font-accent);
}

p {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
  font-weight: bold;
}

a  {
  color:#fff;
}

.regular {
  display: block;
  text-align: center;
  width: 80%;
  max-width: 500px;
  margin: 4rem auto 2rem;
  max-width: 100%;
}

.regular a  {
  color:#20172c;
}

.regular p {
  color:#20172c;
  text-align: left;
}

.regular h1 {
  display: block;
  color:#20172c;
  font-family: var(--font-header);
}

.regular h2 {
  display: block;
  color:#20172c;
  font-family: var(--font-accent);
}

.header {
  display: block;
  background: linear-gradient(to bottom, var(--bg), var(--aqua));
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.header h1 {
  display: block;
  font-size: 3rem;
  font-family: var(--font-header);
  color: var(--text);
  text-shadow: 2px 2px 0 #00000033;
  margin: 2rem auto auto 0;
}

.header-wave {
  display: block;
  width: 100%;
  height: 100px;
  fill: var(--aqua);
}

.flower-container {
  display: block;
  margin: 4rem auto 0;
  width: 200px;
  height: 200px;
}

.flower-content {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--yellow);
  border-radius: 2rem;
  width: 80%;
  max-width: 500px;
  margin-top: -2rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.gallery-container {
  background-color: var(--pink);
  border-radius: 2rem;
  width: 90%;
  max-width: 600px;
  margin: 8rem auto 0;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1;
  position: relative;
}

.gallery-container p {
  display: inline-block;
  font-family: var(--font-body);
  color: white;
  font-size: 1rem;
  margin: 0;
}

.gallery-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 1rem;
  max-width: 600px;
  margin: -3rem auto 2rem;
  position: relative;
  z-index: 1;
}

.card {
  background-color: var(--purple);
  padding: 1rem;
  border-radius: 1rem;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  overflow: hidden;
}

.card img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0.5rem;
}

.card p {
  font-size: .7rem;
}

.smiley-container {
  display: block;
  margin: 4rem auto 0;
  width: 200px;
  height: 200px;
}

.smiley-content {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--aqua);
  border-radius: 2rem;
  width: 80%;
  max-width: 500px;
  margin-top: -2rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

footer {
  display: block;
  background: linear-gradient(to bottom, var(--orange), var(--bg));
  color: white;
  text-align: center;
  padding: 1rem 0 5rem;
  font-weight: bold;
}

.footer-wave {
  display: block;
  width: 100%;
  height: 100px;
  fill: var(--orange);
  transform: scaleY(-1);
  margin-top: -1px;
}

