/* ==============================
   ACHIEVE SUPER — Neocities Retro Style
   Palette: Forest
   Sage greens, deep forest, warm gold accents
   ============================== */

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: #0d1a0a;
}
::-webkit-scrollbar-thumb {
  background-color: #5a7a30;
  border: 1px solid #3a5a20;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #6a8a40;
}

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

body {
  background-color: #0d1a0a;
  /* topo background generated by topo-bg.js */
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  color: #4a3018;
  min-height: 100vh;
}

a:link, a:visited, a:active {
  color: #6c4a2d;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #8a6030;
  text-decoration: underline;
}

a img {
  border-width: 0;
}

b, strong {
  color: #3a5a20;
}

hr {
  border: none;
  border-top: 1px dashed #7a9a50;
  margin: 14px 0;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 14px;
  color: #4a3018;
  line-height: 1.65;
  margin-bottom: 10px;
}

h1 {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 20px;
  color: #3a5a20;
  margin-bottom: 8px;
}

h2 {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 17px;
  color: #4a6a28;
  margin-bottom: 6px;
}

h3 {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 15px;
  color: #5a7a30;
}

ul {
  font: 14px Verdana, Geneva, sans-serif;
  padding-left: 20px;
}

li {
  margin-bottom: 4px;
  color: #4a3018;
}

blockquote {
  font: 13px Verdana, Geneva, sans-serif;
  color: #4a3018;
  background-color: #f0e8b0;
  border-left: 4px solid #a0942e;
  padding: 10px 14px;
  margin: 10px 0;
}

::selection {
  background: #3a5a20;
  color: #fff;
}

/* ---- Header ---- */
.header {
  background-color: #7a9a5a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect width='200' height='200' fill='%237a9a5a'/%3E%3Ccircle cx='50' cy='50' r='40' fill='%238aaa68' opacity='0.15'/%3E%3Ccircle cx='150' cy='100' r='60' fill='%23607a40' opacity='0.1'/%3E%3Ccircle cx='100' cy='160' r='50' fill='%238aaa68' opacity='0.08'/%3E%3C/svg%3E");
  background-size: cover;
  padding: 20px;
  text-align: center;
  border-bottom: 4px ridge #3a5a20;
}

.header-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  color: #f0e8a0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.header-subtitle {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 13px;
  color: #d8e8b0;
  font-style: italic;
  letter-spacing: 1px;
}

/* ---- Layout ---- */
.site-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* ---- Navbar (left sidebar) ---- */
#navbar {
  width: 200px;
  flex-shrink: 0;
  background-color: #a4b87a;
  border: 5px ridge #5a7a30;
  padding: 10px;
  position: sticky;
  top: 12px;
}

#navtitle {
  font: bold 13px Verdana, Geneva, sans-serif;
  padding: 5px 8px;
  margin-bottom: 6px;
  background-color: #e8d46a;
  display: block;
  border-left: 5px solid #a0942e;
  color: #3a5a20;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  display: block;
  padding: 5px 8px;
  font-size: 13px;
  color: #2a3a14;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.15s ease;
  letter-spacing: 0.5px;
}

.nav-list a:hover {
  background: #b8cc88;
  border-left: 4px solid #3a5a20;
  color: #1a2a08;
  text-decoration: none;
}

.nav-list a.active {
  background: #b8cc88;
  border-left: 4px solid #3a5a20;
  font-weight: bold;
  color: #1a2a08;
}

.nav-divider {
  border: none;
  border-top: 2px groove #5a7a30;
  margin: 8px 0;
}

/* Sidebar sections */
.sidebar-box {
  margin-bottom: 12px;
}

.sidebar-box-title {
  font: bold 11px Verdana, Geneva, sans-serif;
  padding: 4px 8px;
  background-color: #4a7a28;
  color: #e8f0d0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}

.sidebar-stats {
  font-size: 12px;
  padding: 0 4px;
}

.sidebar-stats .stat-row {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  border-bottom: 1px dotted #6a8a40;
}

.sidebar-stats .stat-label {
  color: #3a4a20;
}

.sidebar-stats .stat-value {
  font-weight: bold;
  color: #3a5a20;
}

.sidebar-links {
  list-style: none;
  padding: 0 4px;
  margin: 0;
}

.sidebar-links li {
  padding: 2px 0;
  font-size: 12px;
  margin: 0;
}

.sidebar-links a::before {
  content: "~ ";
  color: #6a8a40;
}

/* Now playing */
.now-playing {
  background: #0a140a;
  border: 2px solid #1a3014;
  padding: 8px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #88b850;
  margin-bottom: 12px;
}

.now-playing .np-title {
  color: #a0d060;
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 11px;
}

.now-playing .np-track {
  color: #6a9a38;
}

.now-playing .np-bar {
  height: 3px;
  background: #0e1a0e;
  margin-top: 6px;
  border: 1px solid #1a3014;
}

.now-playing .np-bar-fill {
  height: 100%;
  width: 42%;
  background: #88b850;
}

/* Webring */
.webring {
  text-align: center;
  padding: 8px;
  border: 2px groove #5a7a30;
  margin-bottom: 12px;
  background: #b8cc80;
}

.webring .wr-title {
  font-size: 11px;
  font-weight: bold;
  color: #2a3a14;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.webring .wr-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.webring .wr-links a {
  font-size: 11px;
  color: #2a3a14;
  font-weight: bold;
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
  justify-content: center;
}

.badge {
  display: inline-block;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid;
}

.badge-1 { background: #0a140a; color: #88b850; border-color: #5a8a30; }
.badge-2 { background: #0a0a14; color: #6080d4; border-color: #4050a0; }
.badge-3 { background: #140a0a; color: #d06040; border-color: #a04030; }
.badge-4 { background: #14140a; color: #d4c040; border-color: #a09830; }
.badge-5 { background: #0a1414; color: #40b8b0; border-color: #308a80; }
.badge-6 { background: #140a14; color: #c070c0; border-color: #905090; }
.badge-7 { background: #0a1010; color: #60c880; border-color: #409860; }

/* Hit counter */
.hit-counter {
  text-align: center;
  font-size: 10px;
  color: #5a7a38;
  padding: 8px 0;
}

.hit-counter .counter-digits {
  display: inline-flex;
  gap: 1px;
  margin-top: 4px;
}

.hit-counter .digit {
  background: #0a140a;
  color: #88b850;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: bold;
  width: 16px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px inset #1a3014;
}

/* ---- Main Content ---- */
#main {
  flex: 1;
  min-width: 0;
  background-color: #c8dda0;
  border: 5px ridge #5a8a30;
  padding: 14px;
}

/* Big title bar */
#bigtitle {
  font: bold 28px Georgia, 'Times New Roman', serif;
  text-align: center;
  color: #2a4a14;
  background-color: #e8d46a;
  border: 4px groove #a0942e;
  padding: 8px;
  margin-bottom: 12px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.08);
}

/* Section title bars */
#title {
  color: #f0e8a0;
  background: #3a5a20;
  text-align: center;
  padding: 4px 8px;
  border-left: 8px groove #1a3010;
  border-right: 8px groove #1a3010;
  border-top: 2px groove #1a3010;
  border-bottom: 2px groove #1a3010;
  letter-spacing: 2px;
  text-transform: uppercase;
  font: bold 13px Verdana, Geneva, sans-serif;
  margin: 16px 0 10px 0;
}

#title:first-of-type {
  margin-top: 0;
}

/* Welcome / About section */
.welcome-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.welcome-box .photo-frame {
  flex-shrink: 0;
  border: 3px ridge #5a8a30;
  padding: 3px;
  background: #dae8b8;
}

.welcome-box .photo-frame img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  display: block;
}

.welcome-box .photo-frame .photo-placeholder {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #b8cc88, #a0b870);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4a6a28;
  font-size: 11px;
  text-align: center;
  font-style: italic;
}

/* Info table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 8px 0;
}

.info-table td {
  padding: 4px 8px;
  border-bottom: 1px dotted #9aba68;
  vertical-align: top;
}

.info-table td:first-child {
  font-weight: bold;
  color: #3a5a20;
  width: 120px;
  white-space: nowrap;
}

.info-table td:last-child {
  color: #4a3018;
}

/* Post cards */
.post-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-item {
  display: block;
  background: #dae8b8;
  border: 2px groove #7a9a50;
  padding: 12px;
  margin-bottom: 10px;
  transition: background 0.15s ease;
  text-decoration: none;
  color: #4a3018;
  cursor: pointer;
}

.post-item:hover {
  background: #e4f0c4;
  text-decoration: none;
  color: #4a3018;
}

.post-item-title {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 3px;
  color: #2a4a14;
}

.post-item-meta {
  font-size: 11px;
  color: #6a8a48;
  margin-bottom: 6px;
}

.post-item-meta .tag {
  background: #3a5a20;
  color: #f0e8a0;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.post-item-excerpt {
  font-size: 13px;
  color: #4a3018;
  line-height: 1.55;
  margin-bottom: 6px;
}

.post-item-read {
  font-size: 12px;
  font-weight: bold;
  color: #3a5a20;
}

.post-item-read:hover {
  color: #5a8a30;
}

.post-item .new-badge {
  display: inline-block;
  background: #c04020;
  color: #fff;
  font-size: 9px;
  font-weight: bold;
  padding: 1px 5px;
  margin-left: 6px;
  animation: blink 1.2s step-end infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* Coming soon placeholder */
.coming-soon {
  text-align: center;
  padding: 20px;
  color: #6a8a48;
  font-style: italic;
  font-size: 13px;
}

/* Topics grid */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 8px 0;
}

.topic-card {
  background: #dae8b8;
  border: 2px groove #7a9a50;
  padding: 10px;
  text-align: center;
  transition: background 0.15s ease;
}

.topic-card:hover {
  background: #e4f0c4;
}

.topic-card .topic-icon {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}

.topic-card .topic-name {
  font-size: 12px;
  font-weight: bold;
  color: #2a4a14;
}

.topic-card .topic-desc {
  font-size: 10px;
  color: #5a7a38;
  margin-top: 2px;
}

/* Newsletter / Subscribe section */
.subscribe-box {
  background: #e8d46a;
  border: 3px groove #a0942e;
  padding: 14px;
  text-align: center;
  margin: 12px 0;
}

.subscribe-box .sub-title {
  font: bold 14px Verdana, Geneva, sans-serif;
  color: #3a5a20;
  margin-bottom: 6px;
}

.subscribe-box .sub-desc {
  font-size: 12px;
  color: #5a6a28;
  margin-bottom: 10px;
}

.subscribe-box .sub-form {
  display: flex;
  gap: 4px;
  max-width: 380px;
  margin: 0 auto;
}

.subscribe-box .sub-form input[type="email"] {
  flex: 1;
  padding: 6px 10px;
  border: 2px inset #7a9a50;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  background: #fff;
}

.subscribe-box .sub-form input[type="email"]:focus {
  outline: none;
  border-color: #3a5a20;
}

.subscribe-box .sub-form button {
  padding: 6px 16px;
  background: #3a5a20;
  color: #f0e8a0;
  border: 2px outset #5a7a30;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.15s ease;
}

.subscribe-box .sub-form button:hover {
  background: #4a7a28;
}

.subscribe-box .sub-form button:active {
  border-style: inset;
}

.subscribe-box .sub-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter-msg {
  margin-top: 8px;
  font-size: 12px;
  font-weight: bold;
}

.newsletter-msg.success {
  color: #2a6a18;
}

.newsletter-msg.error {
  color: #a03020;
}

/* Guestbook button */
.guestbook-btn {
  display: inline-block;
  background: linear-gradient(180deg, #5a8a30, #3a5a20);
  color: #f0e8a0;
  font-family: Verdana, Geneva, sans-serif;
  font-weight: bold;
  font-size: 13px;
  padding: 8px 20px;
  border: 2px outset #6a9a38;
  cursor: pointer;
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

.guestbook-btn:hover {
  background: linear-gradient(180deg, #6a9a38, #4a7a28);
  color: #f0e8a0;
  text-decoration: none;
}

/* Update log */
.update-log {
  font-size: 12px;
  padding: 0 4px;
}

.update-log .update-item {
  padding: 4px 0;
  border-bottom: 1px dotted #9aba68;
  display: flex;
  gap: 8px;
}

.update-log .update-date {
  color: #6a8a48;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  white-space: nowrap;
  flex-shrink: 0;
}

.update-log .update-text {
  color: #3a4a20;
}

/* Divider lines */
.divider-groove {
  border: none;
  border-top: 3px groove #5a8a30;
  margin: 14px 0;
}

.divider-fancy {
  text-align: center;
  margin: 14px 0;
  font-size: 10px;
  color: #5a8a30;
  letter-spacing: 6px;
}

/* Construction notice */
.construction-notice {
  text-align: center;
  padding: 12px;
  color: #5a7a38;
  font-size: 12px;
  font-style: italic;
}

.construction-notice .icon {
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}

/* Footer */
.site-footer {
  max-width: 960px;
  margin: 0 auto 20px;
  text-align: center;
  padding: 10px;
  font-size: 11px;
  color: #5a7a38;
}

.site-footer a {
  color: #7a9a50;
}

.site-footer a:hover {
  color: #a0ba68;
}

/* Marquee bar */
.marquee-bar {
  background: #1a3010;
  border-top: 2px solid #3a5a20;
  border-bottom: 2px solid #3a5a20;
  padding: 5px 0;
  overflow: hidden;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  color: #a0d060;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

@keyframes marquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* Construction bars */
.construction-bar {
  background: repeating-linear-gradient(
    45deg,
    #e8d46a,
    #e8d46a 8px,
    #1a3010 8px,
    #1a3010 16px
  );
  height: 8px;
}

/* Blinkies in sidebar */
.blinkie-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: center;
  padding: 4px 0;
}

/* ---- Blog Post Body ---- */
.post-meta-retro {
  font-size: 12px;
  color: #6a8a48;
  margin-bottom: 12px;
  padding: 6px 0;
  border-bottom: 1px dotted #9aba68;
}

.post-meta-retro .tag {
  background: #3a5a20;
  color: #f0e8a0;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.post-body {
  font-size: 14px;
  line-height: 1.7;
  color: #4a3018;
}

.post-body p {
  margin-bottom: 14px;
}

.post-body h2 {
  font: bold 16px Verdana, Geneva, sans-serif;
  color: #3a5a20;
  margin: 20px 0 8px;
  padding-bottom: 4px;
  border-bottom: 2px groove #7a9a50;
}

.post-body h3 {
  font: bold 14px Verdana, Geneva, sans-serif;
  color: #4a6a28;
  margin: 16px 0 6px;
}

.post-body ul, .post-body ol {
  margin: 10px 0 14px;
  padding-left: 20px;
}

.post-body li {
  margin-bottom: 6px;
  line-height: 1.65;
}

.post-body code {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  background: #dae8b8;
  padding: 1px 5px;
  border: 1px solid #9aba68;
}

.post-body pre {
  background: #0a140a;
  color: #88b850;
  padding: 12px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.5;
  overflow-x: auto;
  margin: 12px 0;
  border: 2px groove #3a5a20;
}

.post-body pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
}

.post-body .pullquote {
  font: bold 16px Georgia, 'Times New Roman', serif;
  color: #3a5a20;
  text-align: center;
  padding: 16px 20px;
  margin: 18px 0;
  border-top: 2px groove #7a9a50;
  border-bottom: 2px groove #7a9a50;
  font-style: italic;
}

.post-tags-retro {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin: 16px 0;
  padding-top: 12px;
  border-top: 1px dotted #9aba68;
}

.post-tag-retro {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 2px 8px;
  background: #dae8b8;
  border: 1px solid #9aba68;
  color: #3a5a20;
  text-decoration: none;
}

.post-tag-retro:hover {
  background: #3a5a20;
  color: #f0e8a0;
  text-decoration: none;
}

.post-nav-retro {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 2px groove #7a9a50;
}

.post-nav-retro a {
  font-size: 12px;
  font-weight: bold;
  color: #3a5a20;
  text-decoration: none;
  padding: 6px 10px;
  background: #dae8b8;
  border: 2px groove #7a9a50;
  transition: background 0.15s ease;
}

.post-nav-retro a:hover {
  background: #e4f0c4;
  text-decoration: none;
}

/* ---- Project Cards ---- */
.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 8px 0;
}

.project-card {
  background: #dae8b8;
  border: 2px groove #7a9a50;
  padding: 12px;
  transition: background 0.15s ease;
}

.project-card:hover {
  background: #e4f0c4;
}

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.project-card-title {
  font-size: 15px;
  font-weight: bold;
  color: #2a4a14;
}

.project-card-title a {
  color: #2a4a14;
}

.project-card-title a:hover {
  color: #4a7a20;
}

.project-status {
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border: 1px solid;
}

.project-status.active {
  background: #0a140a;
  color: #88b850;
  border-color: #5a8a30;
}

.project-status.planned {
  background: #14140a;
  color: #d4c040;
  border-color: #a09830;
}

.project-status.complete {
  background: #0a0a14;
  color: #6080d4;
  border-color: #4050a0;
}

.project-card-desc {
  font-size: 13px;
  color: #4a3018;
  line-height: 1.55;
  margin-bottom: 6px;
}

.project-card-tech {
  font-size: 10px;
  color: #6a8a48;
  font-style: italic;
}

/* ---- Resource Items ---- */
.resource-item {
  padding: 8px 0;
  border-bottom: 1px dotted #9aba68;
}

.resource-item:last-child {
  border-bottom: none;
}

.resource-item-name {
  font-size: 14px;
  font-weight: bold;
  color: #2a4a14;
  margin-bottom: 2px;
}

.resource-item-name a {
  color: #2a4a14;
}

.resource-item-name a:hover {
  color: #4a7a20;
}

.resource-item-desc {
  font-size: 12px;
  color: #5a7a38;
  line-height: 1.5;
}

/* ---- Link Items ---- */
.link-item {
  padding: 6px 0;
  border-bottom: 1px dotted #9aba68;
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.link-item:last-child {
  border-bottom: none;
}

.link-item-name {
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
}

.link-item-name a {
  color: #2a4a14;
}

.link-item-name a:hover {
  color: #4a7a20;
}

.link-item-desc {
  font-size: 12px;
  color: #5a7a38;
}

/* ---- Category Filter ---- */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 8px 0 12px;
}

.category-filter a {
  font-size: 11px;
  font-weight: bold;
  padding: 3px 10px;
  border: 1px solid #7a9a50;
  color: #3a5a20;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.15s ease;
}

.category-filter a:hover,
.category-filter a.active {
  background: #3a5a20;
  color: #f0e8a0;
  text-decoration: none;
}

/* ---- Mobile responsive ---- */
@media (max-width: 768px) {
  .site-wrapper {
    flex-direction: column;
  }

  #navbar {
    width: 100%;
    position: static;
  }

  #main {
    width: 100%;
  }

  .welcome-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .topics-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-box .sub-form {
    flex-direction: column;
  }

  .header-title {
    font-size: 26px;
  }
}
