<style>
body {
  background-color: #000000;
  color: #00eaff;
  font-family: 'Courier New', monospace;
  line-height: 1.6;
  text-shadow: 0 0 5px #00eaff;
}

/* Universal transition */
* {
  transition: all 0.3s ease-in-out;
}

/* Core layout styling */
header, nav, section, footer {
  margin: 20px;
  padding: 20px;
  border: 1px solid #00eaff;
  box-shadow: 0 0 10px #00eaff, 0 0 20px #00ffff;
  text-shadow: 0 0 5px #00eaff;
}

/* Header hover */
header:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px #00eaff, 0 0 30px #00ffff;
}

/* Footer hover */
footer:hover {
  background-color: #111;
  box-shadow: 0 0 15px #00eaff, 0 0 30px #00ffff;
}

/* Section hover effect */
section:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px #00eaff, 0 0 30px #00ffff;
}

/* Nav styling */
nav ul {
  list-style-type: none;
  padding: 0;
  text-align: center;
}

nav ul li {
  display: inline;
  margin: 0 10px;
}

nav ul li a {
  text-decoration: none;
  color: #00eaff;
  text-shadow: 0 0 5px #00eaff;
}

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

/* Section styles */
.terminal,
.code-snippet {
  background-color: black;
  border: 1px solid #00eaff;
  padding: 20px;
  box-shadow: 0 0 10px #00eaff;
}

/* Button styling */
button {
  background-color: black;
  color: #00ffff;
  padding: 10px 20px;
  border: 1px solid #00eaff;
  margin: 5px;
  border-radius: 5px;
  width: 200px;
  text-shadow: 0 0 5px #00ffff;
  box-shadow: 0 0 10px #00eaff, 0 0 15px #00ffff;
}

button:hover {
  background-color: #00eaff;
  color: black;
  box-shadow: 0 0 15px #00ffff, 0 0 25px #00eaff;
  cursor: pointer;
}

/* Footer layout fix */
footer {
  text-align: center;
  padding: 20px 0;
  color: #00eaff;
}
/* Base styles for everything */
body {
  background-color: #000000;
  color: #00eaff;
  font-family: 'Courier New', monospace;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Headings and paragraphs */
h1, h2, h3, p {
  color: #00eaff;
}

/* Header, nav, section, footer all black */
header,
nav,
section,
footer {
  background-color: #000;
  padding: 20px;
}

/* Links */
a {
  color: #00eaff;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

/* Buttons */
button {
  background-color: #000;
  color: #00eaff;
  border: 1px solid #00eaff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #00eaff;
  color: #000;
}

#contact {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  color: #00eaff;
  border-radius: 10px;
  box-shadow: 0 0 10px #0f0;
  margin: 20px;
}

#contact h2 {
  margin-bottom: 20px;
}

#contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#contact input[type="email"],
#contact textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #00eaff;
  border-radius: 5px;
  background-color: #222;
  color: #00eaff;
  font-size: 16px;
}

#contact textarea {
  height: 150px;
  resize: none;
  /* Prevent resizing the textarea */
}

#contact button {
  padding: 10px 20px;
  background-color: #00eaff;
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 200px;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}

#contact button:hover {
  background-color: #00ffff;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #000000;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}
</style>