* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #111111;
  background-color: #fbacf6;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 32px 0;
}

main {
  max-width: 800px;
  width: 100%;
  padding: 0 16px;
}

h1 {
  font-size: 3.75rem;
  font-weight: normal;
  line-height: 1em;
  letter-spacing: -0.25rem;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}

h2 {
  font-size: 24px;
  font-weight: normal;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}

p {
  margin-bottom: 16px;
}

ul {
  margin-left: 32px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

a {
  color: #ec0a0a;
  text-decoration: underline;
}

a:hover {
  color: #e3df0b;
}

code {
  font-family: monospace;
  background-color: #f5f5f5;
  padding: 2px 6px;
  border: 1px solid rgba(0, 0, 0, 0.25);
}

.nav-simple {
  position: fixed;
  left:2px;
  top: 32px;
  width: 150px;
}

.nav-simple ul {
  list-style: none;
  margin: 0;
  text-align: center;
  padding: 0;
}

.nav-simple li {
  margin-bottom: 10px;
}

.nav-simple a {
  display: block;
  padding: 8px 16px;
  color: #4a094d;
  text-decoration: none;
  position: relative; /* Needed for the ::before pseudo-element */
  overflow: hidden; /* Ensures the sliding background doesn't overflow */
  border: 2px solid #781256;
  border-radius: 4px;
  box-sizing: border-box;
}

.nav-simple a:hover {
  background-color: #088f8f;
  color: #64f3d6;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 15px ;
}

.nav-simple+main {
  margin-left: 232px;
}

.nav-horizontal {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;
  background-color: #4e0034;
  padding: 0 32px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-horizontal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 100px;
}

.nav-horizontal li {
  margin-bottom: 0;
}

.nav-horizontal a {
  display: block;
  padding: 16px 8px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-horizontal a:hover {
  color: #82f6f2;
  background-color: #f356bc;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(174, 39, 124, 0.6); /* Pink shadow */
  transform: translateY(-2px); /* Slightly lift the button */
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-horizontal+main {
  margin-top: 80px;
}

.nav-custom { 
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #7ca2fafe;
  padding: 8px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-custom ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.nav-custom li {
  margin-bottom: 0;
}

.nav-custom a {
  display: block;
  padding: 8px 12px;
  color: #c50faa;
  text-decoration: none;
  border: 2px solid #f309d0;
  border-radius: 4px;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
}
 

.nav-custom a:hover {
 background-color: aqua;
 color: #6943bc;
 border-radius: 8px;
 transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-centered {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f4e72e94;
  border: 2px solid #f7e923a8;
  padding: 10px 0px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.nav-centered ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  width: 100%;
}
.nav-centered li {
  margin-bottom: 0;
}
.nav-centered a {
  display: block;
  padding: 8px 16px;
  color: #760d69;
  margin: 0 4px;
  border-radius: 4px;
  box-sizing: border-box;
  border: 2px solid #fded07f2;
  border-bottom-left-radius: 100px;
  border-top-right-radius: 100px;
  border-style: dotted;
  text-decoration: underline;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-centered a:hover {
  background-color: #7213a2;
  color: #ffffff;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-centered+main {
  margin-top: 80px;
}

@media (width >=480px) {}

@media (width >=1024px) {}