body {
  background-color: #1f1c25;
  color: #f0e6d1;
  font-family: "Luminari", "Georgia", serif;
  line-height: 1.7;
  margin: 0;
  padding: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

b {
  font-weight: 900;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #dda15e;
  margin-top: 24px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px #000;
}

h1 {
  font-size: 2.5em;
  text-align: center;
}

h1 + p {
  text-align: center;
}

h2 {
  font-size: 2em;
}

h3 {
  font-size: 1.5em;
}

h4,
h5,
h6 {
  font-size: 1.2em;
}

a {
  color: #e0a96d;
  text-decoration: none;
  border-bottom: 2px solid #e0a96d;
}

a:hover {
  color: #f4a261;
  border-color: #f4a261;
}

ul,
ol {
  padding-left: 30px;
}

code {
  background-color: #3c3c42;
  border-radius: 6px;
  color: #e9c46a;
  padding: 0.4em 0.6em;
  font-family: "Courier New", monospace;
}

pre code {
  padding: 0;
}

pre {
  background-color: #3c3c42;
  border-radius: 6px;
  padding: 1em;
  overflow: auto;
  box-shadow: 2px 2px 6px #000;
}

blockquote {
  background-color: #2e2c35;
  border-left: 4px solid #8d99ae;
  padding-left: 2em;
  margin-left: 0;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-right: 0.5em;
  color: #ddd;
  font-style: italic;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  border: 3px solid #3c3c42;
  box-shadow: 3px 3px 6px #000;
  display: block;
  margin: 0 auto 100px auto;
}

/* Main page - linked images left-aligned */
a img {
  margin-left: 0;
  margin-right: auto;
  max-width: 400px;
  border: 3px solid #7e6ba8;
}

a img:hover {
  border-color: #f3ce80;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #1f1c25;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #21212e;
  border-radius: 6px;
  border: 3px solid #1f1c25;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #5a5466;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #3c3c42 #1f1c25;
}

::-webkit-scrollbar-corner {
  background: #1f1c25;
}

.contact-info {
  text-align: center;
  margin-bottom: 30px;
}

.contact-info a {
  margin: 0 15px;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.project-card {
  display: block;
  width: 300px;
  background-color: #2e2c35;
  border-radius: 8px;
  padding: 15px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s;
}

.project-card:hover {
  transform: translateY(-5px);
  border: none;
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}

.project-card h3 {
  margin: 15px 0 10px 0;
  color: #dda15e;
}

.project-card p {
  margin: 0;
  font-size: 0.9em;
  color: #f0e6d1;
}