/* General styles */
body {
  font-family: "inter", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: black;
  color: #333;
}

header {
  background-color: #111827;
  color: white;
  padding: 10px 0;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header__nav {
  display: flex;
  justify-content: center;
  margin: 0 100px;
  min-height: 6vh;
}
#navbar_logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
}

.icon-container {
  display: flex;
  justify-content: center;
  margin: 20px 0; /* Adds some space around the icon */
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

nav ul li {
  display: inline;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: rgba(255, 255, 255, 0.329);
}

main {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #1f2937;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

section {
  margin-bottom: 20px;
}

section h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

section p,
section ul {
  font-size: 1.1em;
}

section ul {
  list-style-type: disc;
  margin-left: 20px;
}

img {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 600px;
}

.quick-links-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;

  a {
    background-color: #282845;
  }
}

a {
  text-decoration: none;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

a i {
  font-size: 20px;
}

a:hover {
  color: rgba(255, 255, 255, 0.329);
}
