/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');

body {}

/* Styling for the page title */
header {
    font-family: Inter, sans-serif;
    font-weight: bold;
    font-size: 25px;
}

header h1 {
    margin: 5px;
}

/* Navigation bar styling */
nav {}

nav ul {
    /* removes bullet points */
    list-style-type: none;
    background-color: #000000;
    /* voodo magic */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

nav ul li {
    /* makes nav bar items align horizontally */
    float: left;
}

nav ul li a {
    display: block;
    font-family: sans-serif;
    color: white;
    text-decoration: none;
    /* top-bottom left-right */
    padding: 8px 16px;

}

nav ul li a:hover {
    background-color: #333;
}

/* Styling for the main part of the page */
main {
    font-family: Inconsolata, sans-serif;
    /* the text will take up at most 75% of the screen */
    
}

main h1 {
    font-family: sans-serif;
    margin: 8px;
    margin-left: 0px;
}

main p {
    padding-right: 25%;
}

main ol {
    padding-right: 25%;
}

main hr {
    color: black;
    height: 1px;
    background-color: black;
}

/* Styling for project directory entries */
.project-dir-entry {
    margin-bottom: 24px;
}

.project-dir-entry h2 {
    font-size: 28px;
    /* adjust the spacing between the text and the images below it */
    margin-bottom: 2px;
}

.project-dir-entry a {
    color: #000000;
    text-decoration: none;
}

.project-dir-entry a:hover {
    text-decoration: underline;
}

.project-dir-entry img {
    height: 200px;
}

/* Styling for footer. Just used for copyright. */
footer {
    font-family: Inconsolata, sans-serif;
    bottom: 0;
    margin: 8px;
}