@import url(1434/style/fonts/clear-sans.css);
 
html, body {
  margin: 0;
  padding: 0;
  background: #1b1b1d;
  color: rgb(213, 249, 255);
  font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body {
  margin-bottom: 60px;
}

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
}

.heading {
  padding: 64px 0 30px;
  margin: 0 0 48px;
}
 
h1.title {
  color: #5ec3ca;
  font-size: 88px;
  margin: 0 -5px 0px;
  display: block;
  line-height: 1.0;
}
 
.subtitle {
  font-size: 16px;
  color: #7dd8e0;
  margin: 12px 0;
}


/* Headings */
h2 {
  color: rgb(144, 228, 228);
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 20px;
  padding-bottom: 0;
  border-bottom: none;
}
 
h3 {
  color: rgb(213, 249, 255);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}
 
/* Text */
p {
  color: rgb(213, 249, 255);
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.7;
}
 
p.muted {
  color: #ccc;
  font-size: 15px;
}
 
p.amplified {
  font-weight: bolder;
}
 
/* Links */
a {
  color: aqua;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease;
}
 
a:hover {
  color: #7dd8e0;
  text-decoration: underline;
}
 
/* Section End Line */
.section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a3a3b;
}

.section:last-of-type {
  border-bottom: none;
}
 
/* Nav links (connections) */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
 
.nav-links a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: rgb(213, 249, 255);
  text-decoration: none;
  background: #4e5b5c;
  border: 1px solid;
  padding: 6px 18px;
  border-radius: 6px;
  transition: background 0.18s ease, border-color 0.18s ease,
              transform 0.18s ease, box-shadow 0.18s ease;
}
 
.nav-links a:hover {
  background: rgba(94, 195, 202, 0.25);
  border-color: #5ec3ca;
  transform: translateY(-2px);
  text-decoration: none;
  color: rgb(213, 249, 255);
}
 
/* Skill pill boxes */
info, .info {
  font-size: 15px;
  padding: 3px 15px;
  width: fit-content;
  margin: 4px 4px 4px 0;
  border-radius: 6px;
  background-color: #359aaa;
  color: #ffffff;
  display: inline-block;
}

/* Writeup Scrollbox */
.scrollbox {
  height: calc(3 * 96px); /* 3 items visible */
  overflow-y: auto;
  border: 1px solid #2a3a3b;
  border-radius: 8px;
  scrollbar-width: thin;
  scrollbar-color: #2a3a3b transparent;
}

.scrollbox::-webkit-scrollbar {
  width: 6px;
}

.scrollbox::-webkit-scrollbar-track {
  background: transparent;
}

.scrollbox::-webkit-scrollbar-thumb {
  background: #2a3a3b;
  border-radius: 3px;
}

.scrollbox::-webkit-scrollbar-thumb:hover {
  background: #3a5a5c;
}

.writeup-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #1e2e30;
  text-decoration: none;
  color: inherit;
  font-weight: normal;
  transition: background 0.15s ease;
}

.writeup-entry:last-child {
  border-bottom: none;
}

.writeup-entry:hover {
  background: rgba(94, 195, 202, 0.07);
  text-decoration: none;
  color: inherit;
}

.writeup-text {
  flex: 1;
  min-width: 0;
}

.writeup-title {
  color: #5ec3ca;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

.writeup-desc {
  color: #9ab8bb;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.writeup-arrow {
  color: #2a5a5e;
  font-size: 18px;
  flex-shrink: 0;
  transition: color 0.15s ease, transform 0.15s ease;
}

.writeup-entry:hover .writeup-arrow {
  color: #5ec3ca;
  transform: translateX(3px);
}

/* Dropdowns */
details {
  font-size: 20px;
  width: fit-content;
  padding: 0 18px;
  margin: 15px 0;
  border-radius: 6px;
  border-left: 6px solid #637e81;
  background-color: #005f7f;
  display: block;
  transition: border-left-color 0.2s ease;
}
 
details:hover,
details[open] {
  border-left-color: #00bfff;
}
 
details[open] summary ~ * {
  animation: summaryin 0.35s ease-out;
}
 
summary {
  color: rgb(213, 249, 255);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
 
summary::before {
  content: "▶";
  font-size: 0.6em;
  color: #7dd8e0;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
 
details[open] summary::before {
  transform: rotate(90deg);
}
 
details p,
details .detail-body {
  font-size: 17px;
  padding: 2px 6px 14px;
  margin: 0;
  color: rgb(213, 249, 255);
  line-height: 1.6;
}
 
.detail-meta {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 6px;
  padding: 0 6px;
}

code {
  font-family: monospace;
  font-size: 14px;
  background: #242424;
  border: 1px solid #2e2e2e;
  color: #5ec3ca;
  padding: 1px 6px;
  border-radius: 3px;
}
 
@keyframes appear {
  0%   { opacity: 0; transform: scale(0.5) rotate(20deg); }
  90%  { opacity: 0.9; transform: scale(1.05) rotate(0deg); }
  100% { opacity: 1; transform: scale(1); }
}
 
@keyframes summaryin {
  0%   { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .heading {
    padding: 40px 20px 32px;
    margin: 0 -20px 40px;
  }
 
  .container {
    padding: 0 20px;
  }
 
  h1.title {
    font-size: clamp(42px, 14vw, 64px);
  }
 
  details {
    min-width: 0;
    width: 100%;
  }

  .scrollbox {
    width: 100%;
  }
}