@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;600&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: 150px 4fr 1fr;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
}

.content {
    grid-column: 2;
    grid-row: 2;
}

.projects {
    margin: 2em 0;
}

#project-date {
    font-size: 1em;
    font-weight: normal;
}

#project-title {
    font-size: 2em;
    margin-bottom: 10px;
}

#list {
    background-color: white;
    border: none;
}

h5 {
    display: none;
}

h2 {
    font-size: 2em;
    font-weight: bold;
}

h3 {
    font-size: 1.5em;
    margin-top: 20px;
}

h4 {
    font-size: 1.1em;
    font-weight: normal;
    margin-top: 20px;
    margin-bottom: 5px;
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

pre {
    font-size: 1.1em;
    margin-bottom: 20px;
    background-color: blanchedalmond;
    border: 1px solid black;
    padding: 5px;
    overflow-x: auto;
    white-space: pre-wrap;
}

/* <img src="{{ url_for('static', filename='images/shrek.jpg') }}" alt="Example Image" width="300" height="auto"> */
img {
    display: block;
    margin: 20px auto;
}





