/* ========== Global Reset & Body ========== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #1B263B;
  color: #f0f0f0;
  font-family: Arial, sans-serif;
}

/* ========== Header ========== */
header {
  background-color: #0D1B2A;
  padding: 10px;
}

header h1 {
  margin: 0;
  color: #E0E1DD;
  text-align: center;
}

/* ========== Navigation Bar ========== */
nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  background-color: #1B263B;
}

nav a {
  display: inline-block;
  padding: 10px 20px;
  color: #ffffff;
  background-color: #415A77;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

a:link {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: pink;
  background-color: transparent;
  text-decoration: underline;
}


.side-nav {
  position: fixed;
  top: 50%;
  display: inline-block;
  font-size: 7.5em;                /* Increased size */
  color: #ff1493;                  /* DeepPink */
  background: none !important;
  border: none !important;
  padding: 0;
  margin: 0;
  text-decoration: none;
  z-index: 1000;
  transition: color 0.3s, transform 0.3s ease-in-out;
  transform: translateY(-50%);
  transform-origin: 50% 50% important!;
}

.left-nav {
  left: 100px;                   /* Pulled inward from the left edge */
}

.right-nav {
  right: 100px;                  /* Pulled inward from the right edge */
}

.side-nav:hover {
  color: #ff69b4;               /* HotPink on hover */
  text-decoration: none;
  transform: translateY(-50%) scaleX(1.25) scaleY(3);

}



/* ========== Main Content ========== */
main {
  max-width: 800px;
  margin: 20px auto;
  background-color: #2E4057;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
