 
:root {
  --color-background: #4dd5fb; /* page background */
  --color-primary: #ec6c6c; /* hero section */
  --color-accent: #db88f7; /* call-to-action section */
  --color-text: #000000; /* body text */

  --font-heading: "limelight", Arial, sans-serif;
  --font-body: "dongle", Georgia, serif;
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-size: 100px;
  transition: transform 0.3s ease-in-out;
}
h1:hover {
  color: #00ff5e;
  transform: scale(1.05);
}
p,
li {
  font-size: 50px;
}

img {
  max-width: 100%;
  margin-top: 10px;
  border-radius: 50px;
  transition: transform 0.3s ease-in-out;
  padding: 0 30px;
}
img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgb(0, 0, 0, 0.4);
}
.hero {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 30px;
  border-radius: 50px;
}
.imageC {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  
}
.imageC img {
  max-width: 30%;
  padding:0px;
  margin:0px;
}
.imageC2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.imageC2 img {
  max-width: 30%;
  padding:0px;
  margin:0px;
  margin-bottom:20px;
}
.about {
  background-color: #ffffff;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.H22:hover{
  transform: scale(1.05);
  color: #7c17ff;
}
.about h2 {
  text-align: center;
}
/* === CALL TO ACTION SECTION === */
.cta {
  background-color: var(--color-accent);
  color: #ffffff;
  text-align: center;
  border-radius: 50px;

  margin-top:20px;
  padding: 50px 40px;
  transition: all 0.3s ease-in-out;
}
.H33:hover {
  transform: scale(1.05);
  color: #f9ff51;
}

.cta-button {
display: inline-block;
margin-top: 20px;
padding: 16px 40px;
background-color: #35a6d6;
color: #5397f6;
text-decoration: none;
font-weight: bold;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgb(0, 0, 0, 0.4);
}

.cta-button:hover {
  background-color: #869aff;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 8px 25px rgb(0, 0, 0);
}

.cta a {
  color: #00ff5e;
  font-weight: bold;
  font-size: 50px;
}

/* =============================================================
   Notice what is NOT here yet: no spacing, no rounded corners,
   no shadows, no layout, no motion. That is the rest of your
   week. Day 3: spacing & decoration. Day 4: layout & motion.
   ============================================================= */
