header {
  text-align: center; 
  padding: 20px 0;      
}

header img {
  max-width: 700px;      
  width: 100%;        
  height: auto;            
  display: inline-block;    
}





body {
  background-color: #000;
  color: #fff;
  margin: 0;
  font-family: sans-serif;
}



/* -------- NAV BAR -------- */

nav {
	background-color: #161A1B;
	padding: 10px 0;
}

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

nav ul li {
	display: inline-block;
	margin: 0 20px;
}

nav ul li a {
	text-decoration: none;
	color: #5886AA;
	font-family: "Garamond", serif;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 10px 5px;
	transition: 0.3s;
}

nav ul li a:hover {
	color: #F83059;
	text-shadow: 0 0 5px #F83059, 0 0 10px #00ffff;
}



/* -------- HEADINGS -------- */


h1 {
  font-family: "Garamond", monospace;
  color: #F72752;
  font-size: 2.8rem;
  text-align: center;
  margin: 30px auto;
  width: 85%;
  padding: 15px;
  border: 1px solid #ff77ff;
  border-radius: 8px;
  box-shadow: 0 0 15px #00ffff;
}

h2 {
  font-family: "Garamond", monospace;
  color: #F72752;
  font-size: 1.4rem;
  text-align: center;
  margin: 30px auto;
  width: 85%;
  padding: 15px;
  border: 1px solid #ff77ff;
  border-radius: 8px;
  box-shadow: 0 0 15px #00ffff;
}









/* -------- TEXT -------- */

p {
  font-family: "Garamond", serif;
  color: #1FFDF8;
  font-size: 1.2rem;
  line-height: 1.7;
  padding: 15px 20px;
  text-align: center;
  border: 1px solid #ff77ff;
  border-radius: 8px;
  margin: 20px auto;
  width: 80%;
  box-shadow: 0 0 10px #00ffff;
}


/* -------- FOOTER -------- */

footer {
	text-align: center;
	margin: 40px 0;
	}

.agora-link {
	width: 50px;
	height: 50px;
	display: inline-block
}


.webring-button {
	width: 150px;
	height: 50px;
	display: inline-block
}



/* -------- GUESTBOOK -------- */

.guestbook {
  border: 1px solid #ff77ff;
  border-radius: 8px;
  padding: 20px;
  background-color: rgba(0,0,0,0.3);
  color: #1ffdf8;
  width: 80%;
  margin: 20px auto;
  box-shadow: 0 0 10px #00ffff;
  font-family: "Garamond", serif;
}

.guestbook-entries p {
  margin-bottom: 10px;
  padding: 5px;
  text-shadow: 0 0 2px #00ffff;
}



/* -------- LISTS -------- */


/* Vaporwave UL style */
ul.ardea-list {
    list-style: none;              
    padding-left: 0;
    margin: 20px auto;
    font-family: "Garamond", serif;
    color: #1FFDF8;
    text-align: center;
    width: fit-content;
}

/* Individual list items */
ul.ardea-list li {
    background: rgba(0,0,0,0.6);
    border: 1px solid #FF77FF;
    padding: 10px 15px;
    margin: 10px 0;
    border-radius: 6px;
    position: relative;
    font-size: 1.5rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* neon bullets! */
/*ul.ardea-list li::before {
    content: "✦";           
    position: absolute;
    left: -20px;
    color: #FF77FF;
    font-size: 1.8rem;
}*/

/* Hover sparkle */
ul.ardea-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 0 10px #FF77FF;
    border-color: #1FFDF8;
}

.ardea-list a {
    color: #1FFDF8;
    text-decoration: none;
    font-weight: bold;
}

.ardea-list a:hover {
    color: #FF77FF;
    text-shadow: 0 0 6px #FF77FF;
}

