body {
    background-color: #000; /* Black background */
    color: #00ff00; /* Green text */
    font-family: monospace;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

section {
    border: 1px solid #00ff00;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px; /* Rounded corners */
}

h1, h2, h3 {
    color: #00ff00;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

a {
    color: #00cc00; /* Lighter green for links */
    text-decoration: none; /* Remove underline from links */
}

a:hover {
    text-decoration: underline; /* Underline links on hover */
}

.header {

	text-align: center;
}

.footer {
    text-align: center;
}

.contact {
    margin-top: 10px;
}

.job {
    margin-bottom: 15px;
}

.hobby {
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid #00ff00;
    padding: 8px;
    text-align: left;
}