@import url('./card-style/style.css');

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  color: #333;
  overflow: scroll;
  scrollbar-width: thin;
  scroll-behavior: auto;
}

header {
  background: #333;
  color: white;
  padding: 1rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
}

section {
  padding: 4rem 1rem;
  max-width: 1600px;
  min-width: auto;
  margin: auto;
}

section h1 a::after {
  content: "\2197";
  font-size: 0.9em;
  margin-left: 0.2em;
  border-left: solid grey 2px;
  border-bottom: solid grey 2px;
}

section h1 a:hover {
  text-decoration: none;
}

section h1 a {
  color: #007bff;
}

dl dd::before {
  content: "• ";
  margin-inline-start: 0.04em;
  color: #007bff;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #333;
  color: white;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
}
