body {
    background-color: #121212; /* Very dark gray */
    color: #E0E0E0; /* Very light gray */
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    line-height: 1.6; /* Improves overall readability */
}

body::before {
    content: "";
    background-image: url(hex.svg);
    /* background-size: cover; */
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 0.2;
}

h1 {
    font-size: 3.5em; /* Increases the size of your name */
    font-weight: 700; /* Ensures your name stands out */
    margin-bottom: 0.5em; /* Adds some space below your name */
}
a {
    color: #ADD8E6; /* Light blue */
    text-decoration: none;
    font-weight: 400; /* Regular weight for the email link */
}
a:hover {
    text-decoration: underline;
}
h3 {
    font-weight: 700; /* Bold weight for headings */
    margin-top: 1em; /* Adds space above the interests heading */
}
ul {
    padding: 0;
    margin-top: 0.5em; /* Adds space above the list */
}
li {
    list-style-type: none;
    margin-bottom: 0.3em; /* Adds space between list items */
    display: inline;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

p {
    font-size: 1.1em; /* Slightly larger font size for the blurb */
    max-width: 600px; /* Sets a max-width for optimal reading length */
    margin-top: 1.5em; /* Adds space above the blurb */
    margin-left: auto;
    margin-right: auto;
}
