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

body {
  background-color: black;
  color: white;
  font-family: 'Courier New', monospace;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border: 2px solid white;
}

h1, h2 {
  color: gray;
  border-bottom: 1px dashed white;
  padding-bottom: 5px;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.header {
  text-align: center;
  margin-bottom: 20px;
}

.content {
  background-color: black;
  padding: 20px;
  border: 1px dashed white;
  margin-bottom: 20px;
}

.content section {
  margin-bottom: 20px;
}

.footer {
  text-align: center;
  font-size: 0.8em;
  margin-top: 20px;
}

.marquee {
  background-color: black;
  color: white;
  padding: 5px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px dashed white;
  border-bottom: 1px dashed white;
  margin: 20px 0;
}

.marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

.projects-list, .blog-list {
  margin-top: 10px;
}

.project-item, .blog-item {
  display: block;
  color: white;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px dashed gray;
}

.project-item:hover, .blog-item:hover {
  color: gray;
}

.project-title, .blog-title {
  font-weight: bold;
}

.project-desc, .blog-desc {
  font-size: 0.9em;
  color: #aaa;
}
@media (max-width: 1000px) {
body {
  background-color: black;
  color: white;
  font-family: 'Courier New', monospace;
  line-height: 1.4;
  max-width: 98vw;
  margin: 0 auto;
  padding: 20px;
  border: none;
}

h1, h2 {
  border-bottom: 0px dashed white;
}

.content {
  border: 0px dashed white;
}
.marquee {
  border-top: 0px dashed white;
  border-bottom: 0px dashed white;
}
.project-item {
  border-bottom: 0px dashed gray;
}
}
