/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #FFF5FB; /*light pink*/ 
  color: black;
  font-family: Verdana;
}

.main-title {
  font-size: 3em;
  color: darkmagenta;
  font-family: monospace;
  text-shadow: 2px 2px #fff;
  margin-bottom: 10px;
}


.subtitle {
  font-size: 1.2em;
  color: #666;
  font-family: monospace;
  letter-spacing: 0.5px;
}


.centered-nav {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  font-family: monospace;
  font-size: 1.5em;
  background-color: rgba(255, 192, 203, 0.7); /* semi-transparent pink */
  padding: 15px 30px;
  border-radius: 12px;
  user-select: none;
  box-shadow: 0 0 15px hotpink;
}

.centered-nav a {
  color: darkmagenta;
  text-decoration: none;
  margin: 0 14px;
  transition: color 0.3s ease;
}

.centered-nav a:hover {
  color: deeppink;
  text-shadow: 0 0 8px deeppink;
}

.below-nav {
  position: absolute;
  top: calc(50% + 100px); /* 60px below the nav's vertical center */
  left: 50%;
  transform: translateX(-50%);
  
  width: 100%;
  max-width: 1000px;
  
  font-family: monospace;
  font-size: 1.5em;
  color: darkmagenta;
  text-align: center;

}


.ascii-art2 {
  position: fixed;
  top: 10%;
  left: 65%;
  width: 200px; /* adjust width as needed */
  padding: 10px;
  font-family: monospace;
  font-size: 25px; /* adjust size */
  color: darkmagenta;
  line-height: 1.1;
  user-select: none; /* prevent accidental text selection */
  pointer-events: none; /* so it doesn't block clicks */
  z-index: 9999;
}