/* 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 {
  /*column-count: 3;
  column-gap: 40px;*/
  background-color: mediumpurple;
  color: lavenderblush;
  font-family: Verdana;
  align-items: center;
  text-align: center;
  margin: 5%;
}

a:hover {
      cursor: url("/deer_smol.png"), pointer;
    }
    
/* unvisited link */
a:link {
  color: #d9ccff;
}

/* visited link */
a:visited {
  color: #e6ac00; /* golden*/
}

/* mouse over link */
a:hover {
  color: #ffdf80; /*brighter golden*/
}

/* selected link */
a:active {
  color: #b399ff;
}

nav {
  color: mediumpurple; 
  background-color: #330033; /*dark purple*/
  border-style: solid;
  border-color: mediumpurple;
  outline-style: solid;
  outline-color: #330033;
  flex-direction: column;
  margin: 5%;
}
/* SIDE NAV BAR FIXED vvv */

.navbar {
  overflow-x: hidden;
  color:white;
  background-color: #330033;
  position: fixed; /* Set the navbar to fixed position */
  /*top: 0;  Position the navbar at the top of the page */
  left:0;
  width: 145px; /* Full width */
  margin: 15px;
  border-style: solid;
  border-color: mediumpurple;
  outline-style: solid;
  outline-color: #330033;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #660000;
  color: white;
}

/* Main content */
.main {
  margin-top: 30px; /* Add a top margin to avoid content overlay */
}

/* SIDE NAV BAR FIXED ^^^ */

h2 {
  color: floralwhite;
  text-align: center;
  border-color: lightgrey;
  border-top-style: none;
  border-left-style: none;
  border-right-style: none;
  border-bottom-style: dotted;
}

ul {
  text-align: left;
  margin: 20px;
}