@font-face {
    font-family: 'Fira Code';
    src: url(fonts/Fira_Code/FiraCode-VariableFont_wght.ttf) format('truetype');
}

/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Body and background settings*/
body {
    background-color: rgba(42, 46, 42, 0.884);
    font-family: 'Fira Code', monospace;
    height: 100vh;
}



/* Main container */
.container {
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    display: grid;
    grid-template-columns: 250px 1fr;
    /* Sidebar width and flexible content */
    min-height: 100vh;
    /* Full viewport height */
}

/* Sidebar styles */
.sidebar {
    background-color: rgba(25, 146, 94, 0.616);
    color: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    height: 100vh;
}

/* Sidebar title (Nick Warren)*/
.sidebar h2 {
    font-size: 2.5rem;
    font-family: 'Fira Code', monospace;
    font-weight: bold;
    margin-bottom: 20px;
    align-self: flex-start;
}


.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    margin-bottom: 10px;
}

/* Sidebar link styling*/
.sidebar a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.9rem;
}

.sidebar a:hover {
    color: rgba(0, 0, 0, 0.55);
    /* Hover color */
}

/*Tabs styles*/
.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Main content styles */
.content {
    background-color: white;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.profile-pic {
    width: 200px;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 20px 0;
}

footer ul {
    list-style-type: none;
    margin-top: 20px;
}

footer h6 {
    font-family: 'Fira Code', 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #777;
}

/* Blog Log container */
div {
    font-family: "Times New Roman", Times, serif;
    margin: 20px;
}

/* Styling for each blog entry */
.blog-entry {
    display: flex;
    justify-content: flex-start;
    /* Align items to the start (left) */
    align-items: center;
    margin: 10px 0;
}

/* Date styling */
.date {
    font-weight: normal;
    margin-right: 10px;
    /* Space between date and title */
}

/* Title styling */
.link-title {
    color: blue;
    text-decoration: underline;
}

.link-title:hover {
    color: darkblue;
    /* Hover effect */
}