/* Reset and global styles */
body,
h1,
h2,
h3,
p,
a,
li,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
    list-style: none;
    text-decoration: none;
    font-family: 'Courier New', Courier, monospace;
}

body {
    color: #eee;
    background-color: #282c34;
    line-height: 1.6;
}

/* Navigation styling */
nav {
    background-color: #333;
    padding: 10px 0;
    margin-bottom: 30px;
    text-align: center;
}

nav a {
    color: #61dafb;
    /* React.js blue, for a techy touch */
    margin: 0 15px;
    font-size: 1.1em;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
}

/* Main content styling */
img.profile-pic {
    display: block;
    margin: 20px auto;
    max-width: 200px;
    border-radius: 50%;
    border: 3px solid #61dafb;
}

h1,
h2,
h3 {
    margin-bottom: 20px;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
}

p,
li {
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Form styling */
label,
input,
textarea {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 1em;
    font-family: 'Courier New', Courier, monospace;
}

input[type="submit"] {
    background-color: #61dafb;
    border: none;
    cursor: pointer;
    color: #333;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #45a8d8;
}


/* Container for the main content */
.container {
    margin: 0 auto;
    max-width: 900px;
    padding: 20px;
    background-color: #282c34;
    /* Same as the body background to blend in */
}

/* Introducing margins for better spacing */
h1,
h2,
h3,
p,
ul,
li,
form {
    margin-bottom: 20px;
}

nav a {
    margin: 0 15px;
    padding: 5px 10px;
    /* A bit of padding for clickable area and visual */
}

input,
textarea {
    margin-bottom: 20px;
}