
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}


body {
  background: linear-gradient(135deg, #ffe6f0, #e6f7ff);
  color: #444;
  text-align: center;
  padding: 20px;
}


header {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: rgba(0, 0, 0, 0.6);
  background-color: #f9abd6;
  color: white;
  position: sticky;
  top: 0;
}

nav a {
  color: #333;
  margin: 10px;
  text-decoration: none;
}

/* TYPOGRAPHY */
h1 {
  color: #ff6699;
  font-size: 2.5em;
  margin-bottom: 10px;
}

h2 {
  color: #555;
  margin-top: 30px;
  margin-bottom: 10px;
}

p {
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}


.cat {
  border: none;
  border-radius: 15px;
  padding: 15px;
  margin: 20px auto;
  width: 260px;
  background: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cat h3 {
  margin: 10px 0 5px;
  color: #333;
}

.cat p {
  font-size: 0.9em;
  color: #666;
}


img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

button {
  background: #ff6699;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #ff3366;
}


form {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: auto;
}

input,
textarea {
  margin: 10px;
  padding: 10px;
  border: none;
  border-radius: 5px;
}


footer {
  background: #f9abd6;
  color: white;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
  font-size: 0.8em;
}

footer .github-link {
    color: #7f3782;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

footer .github-link:hover {
    transform: rotate(-2deg) scale(1.1);
}

footer .heart {
    color: #ff0000; 
    font-family: 'Schoolbell', cursive;
    animation: pulse 1.5s infinite;
}