body {
    background-color: #111111;
    color: #00ff00;
    font: 1.3rem Inconsolata, monospace;
    text-shadow: 0 0 3px #C8C8C8;
    line-height: 1.6;
    margin: 0;
    padding: 10px;
    min-height: 100vh; /* ensures body always fills screen */
}

.center-container {
	text-align: center;
	max-width: 800px;
    margin: 0 auto;
}

h1, h2 {
	color: #00ff00;
}

nav {
	width: 100%;
	display: flex;
	justify-content: center;
}

.dropdown {
	opacity: 0;
}

.start-animation {
	animation: slideDown 1s forwards;
}

.dropdown-content {
	display: none;
	background-color: #151515;
	min-width: 300px;
	z-index: 1;
}

.dropdown-content .directory {
	color: #00ff00;
	padding: 12px 16px;
	text-decoration: none;
		font-size: 22px;
	display: block;
}

.dropdown-content a.directory:hover {
	background-color: #333333;
}

.dropdown-content a.directory:active {
	background-color: #444444;
}

.dropdown-content a.directory:hover::before {
	content: "> ";
	color: #00ff00;
}

@keyframes slideDown {
	0% { transform: translateY(-50px); opacity: 0; }
	100% { transform: translateY(10px); opacity: 1; }
}

footer {
	text-align: center;
	padding: 20px;
	background-color: #202020; /* change this as needed */
	color: #00ff00; /* change this as needed */
	position: fixed;
	width: 100%;
	bottom: 0;
}

a {
    color: aliceblue;
}

.long-link {
	color: #00ff00;
	text-decoration: none;
}

.long-link:hover {
	color: #33ff33;
}

.long-link:active {
	color: #66ff66;
}

input[type="number"] {
	background-color: #202020;
	border: none;
	color: #00ff00;
	padding: 12px;
	font-size: 1.3rem;
	font-family: Inconsolata, monospace;
	width: 50px;
	text-align: center;
}

input[type="number"]:focus {
	outline: none;
	box-shadow: 0 0 5px #33ff33;
}

input[type="email"], input[type="text"], textarea {
  background-color: #202020;
  color: #00ff00;
  font-size: 16px;  /* adjust as needed */
  border: 2px solid #009900;  /* adjust as needed */
  border-radius: 5px;  /* adjust as needed to make the border rounder */
  padding: 5px;  /* adjust as needed */
}

input[type="email"]:focus, input[type="text"]:focus {
  outline: none;  /* Removes the default browser outline */
  border-color: #00ff00;  /* Changes the border color to a darker green when focused */
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .center-container {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
}

#go-back-button {
    flex-shrink: 0;
}
