@import url("https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&amp;display=swap");
h1,
h2,
h4,
h6 {
  color: #ff00ca;
}
header h1 {
  color: #0094ff;
}
th,
header {
  border-bottom: 1px dashed #ae53e8;
}
pre {
  color: #0094ff;
}

html,
body {
  background:#151515 url("images/background.gif");
  color: #f5f5f5;
  font-family: "Space Mono", monospace;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  height: 100vh;
}

.site-container {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
}
.about-me {
  flex: 3;
}
.status {
  margin-top: 18px;
  flex: 1;
  min-width: 200px;
}
h1 {
  font-size: 24px;
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

h2 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 25px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}

h5 {
  font-size: 15px;
  text-align: center;
}

h6 {
  font-size: 25px;
  text-align: left;
  margin-top: 10px;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

p,
li {
  font-size: 16px;
}

ul {
  padding-left: 20px;
  list-style-type: none;
}

li {
  margin-bottom: 8px;
}

li:before {
  content: "- ";
  margin-left: -15px;
}

a:not(:has(img)) {
  text-decoration: none;
  border-bottom: 1px solid #444;
  transition: border-color 0.2s;
}

a:not(:has(img)):hover {
  border-color: #f5f5f5;
}

.profile-img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 4px;
  float: left;
  margin-right: 20px;
  margin-bottom: 15px;
}

a {
  color: #55aaff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
table {
  font-size: 110%;
  border-spacing: 0.3em;
  text-align: center;
}
.project {
  display: flex;
  flex-direction: row;
}

.project img {
  aspect-ratio: 1/1;
  max-height: 100px;
  margin-right: 2em;
}

.blog-date {
  color: #ff00ca;
  font-size: 130%;
}