/* General Body Styles */
body {
    font-family: 'MyCustomFont', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; /* Your font is now the first choice! */
    line-height: 1.6;
    background-color: #040404; /* Dark background, close to black */
    color: #e0e0e0; /* Light gray for text, close to white */
    margin: 0;
    padding: 0;
}

/* Centered container for content */
main, header, footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    border-bottom: 2px solid #111; /* Darker gray for separation */
    margin-bottom: 20px;
    color: #f0f0f0; /* Slightly brighter for heading */
}

header h1 {
    margin-bottom: 0;
    color: #90ee90; /* Light green for the main name/title */
}

/* Navigation Bar */
nav {
    text-align: center; /* Center navigation text */
    margin-bottom: 30px;
    background-color: #111; /* Slightly lighter dark background for nav */
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav a {
    text-decoration: none;
    color: #e0e0e0; /* Light gray for nav links */
    margin: 0 15px;
    font-weight: bold;
    transition: color 3s;
    transition: background-color 0.3s;
    background-color: none;
}

nav a:hover {
    color: #90ee90; /* Light green on hover */
    background-color: #040404;
}

/* Sections */
section {
    background: #111; /* Dark gray for section background */
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px #fff;
    text-align: center; /* Center content within sections */
    transition: box-shadow 0.3s ease-in-out; /* Smooth transition for the glow effect */
}

/* Hover effect for sections */
section:hover {
    box-shadow: 0px 0px 15px #90ee90, 0px 0px 5px #90ee90; /* More pronounced glow with light green */
    background: none; /* Dark gray for section background */
}

h2 {
    color: #90ee90; /* Light green for section headings */
    border-bottom: 1px solid #444; /* Darker gray for separator */
    padding-bottom: 10px;
    margin-top: 0;
}

/* Links List */
#links ul {
    list-style: none;
    padding: 0;
    text-align: center; /* Center the list itself */
    display: inline-block; /* Allows ul to be centered */
}

#links li {
    margin-bottom: 10px;
}

#links a {
    text-decoration: none;
    color: #e0e0e0; /* Light green for links */
}

#links a:hover {
    text-decoration: underline;
}

/* Contact Button */
.email-button {
    display: inline-block;
    background: #6a6a6a; /* Gray button */
    color: #fff; /* White text on button */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.email-button:hover {
    background: #fff; /* Light green on hover */
    color: #1a1a1a; /* Dark text on green hover */
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    color: #888; /* Medium gray for footer text */
    font-size: 0.9em;
}

@font-face {
  font-family: 'MyCustomFont'; /* This is the name you'll use for the font */
  src: url('main.ttf') format('truetype'); /* Path to your font file */
}

/* Container for the side-by-side sections */
.grid-container {
    display: flex; /* This is the magic property that enables flexbox */
    gap: 20px;     /* This adds a 20px space between your two sections */
}

/* Style for the sections themselves */
.info-section {
    flex: 1; /* This tells each section to take up an equal amount of space */
    background: #111;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 0px 5px #e0e0e0;
    text-align: center;
    transition: box-shadow 0.3s ease-in-out;
}

.info-section:hover {
    box-shadow: 0px 0px 15px #90ee90, 0px 0px 5px #90ee90;
}

.item-section {
    text-align: left !important;
}