@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f9fafb;
}

.card {
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.quote {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.author {
  font-size: 1.2rem;
  color: #888;
  margin-top: 10px;
}

.btn {
  background-color: #1d4ed8;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn:hover {
  background-color: #1e40af;
}

.rotate-icon {
  display: inline-block;
  transition: transform 0.5s ease;
}

header {
  background-color: #1d4ed8;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

header nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

header nav li {
  margin-left: 1.5rem;
}

header nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #d1d5db;
}

section {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #1f2937;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
}
