
:root {
  --primary: rgb(141, 198, 65);   
  --secondary: rgb(253, 249, 212);
  --tertiary: rgb(0, 0, 0);   
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background-color: var(--primary);
  color: var(--tertiary);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  padding: 2rem;
}


h1, .number {
  font-family: "TT Hoves Pro", sans-serif;
  font-weight: bold;
  color: var(--tertiary); 
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

h2, h3, p {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--tertiary);
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
  opacity: 0.85;
}
a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--tertiary);
  background: var(--secondary);
  color: var(--tertiary);
  font-family: "TT Hoves Pro", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--tertiary);
  color: var(--secondary);
}
header {
  border-bottom: 2px solid var(--secondary);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

footer {
  border-top: 2px solid var(--secondary);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: var(--secondary);
  text-align: center;
}

.intro {
  background: var(--secondary);
  color: var(--tertiary);
  padding: 2rem;
  border-radius: 6px;
  max-width: 600px;
  margin: 0 auto;
}
.explore-gif {
  width: 180px;    
  cursor: pointer; 
  border: none;
  display: block;
  margin: 1rem auto; 
}




