.header {
	display: flex;
	justify-content: space-between;
	padding: 1.5rem;
}

.header .links {
	display: flex;
	justify-content: end;
	gap: 1rem;
}

* {
	margin: 0;
	padding: 0;
}

.hero {
	background: url("https://cdn.britannica.com/70/234870-050-D4D024BB/Orange-colored-cat-yawns-displaying-teeth.jpg");
	background-size: cover;
	min-heigh: 400px;
	height: 90vh;
	color: white;
	display: flex;
	align-items: center;
	padding: 2rem;
}

.hero .content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hero .button-container {
	margin-top: 1rem;
}

.hero .button {
	color: white;
	text-decoration: none;
	border: 1px solid white;
	display: inline;
	padding: 10px 20px;
	text-align: center;
}

/* Popular Cat Breeds */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styling */
  body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fefaf6;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header */
  .header {
    text-align: center;
    background-color: #ffe4c4;
    padding: 2rem 1rem;
    border-bottom: 4px solid #f4b183;
  }
  
  .header h1 {
    font-size: 2.5rem;
    color: #4b2e05;
  }
  
  .subtitle {
    font-style: italic;
    margin-top: 0.5rem;
    color: #6b4226;
  }
  
  /* Breed section */
  .breeds-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .breed-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .breed-card:hover {
    transform: translateY(-5px);
  }
  
  .breed-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .breed-card h2 {
    margin-top: 1rem;
    color: #4b2e05;
  }
  
  .breed-card p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #ffe4c4;
  }
  
  .back-button {
    display: inline-block;
    text-decoration: none;
    color: #4b2e05;
    background-color: #f4b183;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .back-button:hover {
    background-color: #e69767;
  }

  /* Care Tips */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fffaf5;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header */
  .header {
    text-align: center;
    background-color: #fde6d0;
    padding: 2rem 1rem;
    border-bottom: 4px solid #f4b183;
  }
  
  .header h1 {
    font-size: 2.5rem;
    color: #4b2e05;
  }
  
  .subtitle {
    font-style: italic;
    margin-top: 0.5rem;
    color: #6b4226;
  }
  
  /* Care section */
  .care-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .care-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .care-card:hover {
    transform: translateY(-5px);
  }
  
  .care-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .care-card h2 {
    margin-top: 1rem;
    color: #4b2e05;
    font-size: 1.3rem;
  }
  
  .care-card p {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #444;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #fde6d0;
  }
  
  .footer a {
    display: inline-block;
    margin: 0.5rem;
    text-decoration: none;
    color: #4b2e05;
    background-color: #f4b183;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .footer a:hover {
    background-color: #e69767;
  }
  
  /* Fun Facts */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fffaf4;
    color: #333;
    line-height: 1.6;
  }
  
  /* Header */
  .header {
    text-align: center;
    background-color: #ffe8cc;
    padding: 2rem 1rem;
    border-bottom: 4px solid #f4b183;
  }
  
  .header h1 {
    font-size: 2.5rem;
    color: #4b2e05;
  }
  
  .subtitle {
    font-style: italic;
    margin-top: 0.5rem;
    color: #6b4226;
  }
  
  /* Facts section */
  .facts-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
  }
  
  .fact-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .fact-card:hover {
    transform: translateY(-5px);
  }
  
  .fact-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .fact-card h2 {
    margin-top: 1rem;
    color: #4b2e05;
    font-size: 1.2rem;
  }
  
  .fact-card p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: #444;
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #ffe8cc;
    margin-top: 2rem;
  }
  
  .footer p {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #4b2e05;
  }
  
  .footer-buttons a {
    display: inline-block;
    margin: 0.4rem;
    text-decoration: none;
    color: #4b2e05;
    background-color: #f4b183;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .footer-buttons a:hover {
    background-color: #e69767;
  }
  