:root {
    --background-color: #161616; /* Darker gray background */
    --text-color: #fff; /* White text color for better contrast */
    --border-color: #ddd; /* Border color */
    --debug-border-color: red; /* Debug border color */
}

* {
    /*border: 1px solid var(--debug-border-color); /* Red border for debugging */
}

html, body {
    height: 100%; /* Ensure the html and body elements take up the full height */
    margin: 0;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Press Start 2P', cursive; /* 8-bit game style font */
    display: flex;
    flex-direction: column;
    min-width: 700px; /* Minimum width of the website */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(to bottom, #161616, #0b0b0b); /* Gradient from dark gray to darker gray */
    border-bottom: 1px solid var(--border-color);
}

.header .logo {
    flex: 1;
}

.header .logo img {
    max-height: 50px;
}

.header nav {
    flex: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.header nav ul li {
    margin-right: 20px;
}

.header nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    position: relative;
}

.header nav ul li a:hover {
    text-decoration: underline;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    flex-grow: 1; /* Fill 100% of the available space */
    width: 100%; /* Ensure it takes the full width */
}

.catchphrase {
    margin-right: 20px;
    width: 450px;
}

.profilepicture img {
    max-width: 150px;
    border-radius: 50%;
}

.footer {
    background-color: var(--background-color);
    color: var(--text-color);
    text-align: center;
    padding: 10px 10px;
    border-top: 1px solid var(--border-color);
}

.footer .footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .social-media {
    display: flex;
    gap: 20px;
}

.footer .social-media a {
    text-decoration: none; /* Remove link decoration for footer logos */
}

.github {
    width: 24px; 
    height: 24px;
}

.linkedIn {
    width: 28px; 
    height: 24px;
}