* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: rgb(255, 0, 255);
    font-family: 'Courier New', Courier, monospace;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: rgb(255, 0, 255);
    padding: 20px;
}

/* Left side: logo + title */
.left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
}

.left h1 {
    font-size: 2rem;
    line-height: 1.2;
}

/* Navigation */
nav {
    display: flex;
    gap: 15px;
    background-color: rgb(255, 0, 255);
    padding: 10px 15px;
    border-radius: 5px;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 1rem;
}

table {
    margin-top: 20px;
    border-color: rgb(255, 0, 255);
}

.summary {
    justify-content: center;
    margin-bottom: 40px;
}

.blog-intro {
    justify-content: center;
    margin-bottom: 40px;
}

.top-right-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    background-color: rgb(255, 0, 255);
    padding: 10px 15px;
    border-radius: 5px;
    z-index: 1000;
    /* makes sure it's on top */
}

#project-matrix {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

p {
    margin: 20px auto;
    max-width: 800px;
    line-height: 1.5;
    text-align: justify;
}