/* Base Page Style */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Container to center page content */
.container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Navigation Bar */
nav {
    background-color: #111;
    padding: 20px;
    box-shadow: 0 0 20px #fff;
    font-family: tarrget;
}

/* Navigation Logo */
nav .logo {
    height: 90px; /* You can adjust this to your liking */
    vertical-align: middle;
    margin-right: 15px;
}

/* Navigation Links */
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 12px;
    font-size: 18px;
    font-weight: bold;
    text-shadow:
        0 0 0 0 0 0.5px #fff;
    transition: 0.3s ease-in-out;
}

/* Hover effect on nav links */
nav a:hover {
    color: #f00;
    text-shadow:
        0 0 5px #f00,
        0 0 15px #f00,
        0 0 30px #f00;
}

/* Page Header Styling */
h1, h2 {
    color: #fff;
    text-shadow: 0 0 20px #f00, 
    0 0 5px #f00  ;
    margin-bottom: 20px;
    font-family: tarrget;
}

/* Paragraphs and List Items */
p, ul, ol, label {
    color: #fff;
    font-size: 18px;
    line-height: 1.6;
    margin: 20px auto;
}

/* Align lists nicely */
ul, ol {
    text-align: left;
    display: inline-block;
}

/* Image Styling */
.page-image {
    max-width: 30%;
    height: auto;
    display: block;
    margin: 20px auto;
    box-shadow: 0 0 15px #fff;
    border-radius: 10px;
}

/* Forms */
form {
    margin-top: 30px;
    text-align: center;
}

form input, form textarea, form button {
    width: 80%;
    max-width: 500px;
    margin: 10px auto;
    display: block;
    background-color: #000;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px;
    font-size: 16px;
    box-shadow: 0 0 10px #fff,
    0 0 10px #fff,
        0 0 20px #f00;
     
    border-radius: 5px;
}

/* Form Button Styling */
form button {
    background-color: #fff;
    color: #f00;
    cursor: pointer;
    text-shadow: 0 0 1px #f00;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    font-family: tarrget;
}

form button:hover {
    background-color: #000;
    text-shadow: 0 0 5px #000, 0 0 10px #000;
}
