@font-face {
    font-family: 'ubuntuFont';
    src: url('../Fonts/Ubuntu_Mono/UbuntuMono-Regular.ttf') format('truetype');
    font-style: normal;
}

@font-face {
    font-family: 'ubuntuFont';
    src: url('../Fonts/Ubuntu_Mono/UbuntuMono-BoldItalic.ttf') format('truetype');
    font-style: italic;
    font-weight: bold;
}

#dropdownTitle {
    padding-left: 10px;
}

/* Base Styles */
body {
    background-color: #0f1117; /* Darker for contrast */
    color: #e0e0e0;
    font-family: 'ubuntuFont', monospace;
    margin: 0;
    padding: 0;
}

main {
    background-color: rgba(33, 33, 69, 0.8);
    margin: auto;
    padding: 2rem;
    max-width: 1200px;
    width: 90%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'ubuntuFont', monospace;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px #000;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #90caf9;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

a:hover {
    text-decoration: underline;
    color: #ffffff;
    text-shadow: 0 0 8px #64b5f6;
}

a:visited {
    color: #f48fb1;
}

/* Footer */
footer {
    background-color: rgba(20, 20, 20, 0.9);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #aaaaaa;
    margin: 2rem auto 0 auto;
}

/* Navbar Tweak (if custom) */
.navbar {
    box-shadow: 0 0 10px #000;
}

/* Scrollable Text Area */
.scrolling-text-container {
    max-height: 200px;
    overflow-y: auto;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: rgba(40, 40, 40, 0.7);
}

#profileArea {
    height: 100px;
}

/* Images */
#profileImage {
    border-radius: 25%;
    display: block;
}

/* Titles and Sections */
#mHeader {
    padding-left: 5%;
    margin-top: 2rem;
    color: #ffffff;
}

#mButton {
    font-style: italic;
    color: #ffcc80;
}

#topLayer {
    padding-top: 2rem;
}

/* Unix-style button */
.unix-button {
    background-color: #2e2e2e; /* Dark background */
    color: #f0f0f0; /* Light text */
    border: 1px solid #555; /* Subtle border */
}

.unix-button:hover {
    background-color: #444; /* Lighter background on hover */
    border-color: #888; /* Lighter border color */
    color: #f0f0f0; /* Maintain text color on hover */
}

.unix-button:active {
    background-color: #333; /* Dark background when clicked */
    border-color: #aaa; /* Border turns lighter when clicked */
    color: #f0f0f0;
}

/* Responsive Typography */
@media (min-width: 600px) {
    p {
        font-size: 1.2rem;
    }
}