/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

  * { box-sizing: border-box; }
  body {
    margin: 0;
    min-height: 100vh;
    font-family: "Georgia", sans-serif;
    background-image: url("bg.png");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 16px;
  }
  
  a:link {
  color: #fff;
}
  .wrap { width: 44%; }
  .box {
    background: #ffffff;
    border: 2px solid #000000;
    padding: 22px;
    margin-bottom: 18px;
  }
  .top-box { background: #7f00ff; text-align: center; max-width: 100%; }
  .top-box p { color: #fff; }
  .logo {
    font-family: "Courier New", sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
    margin: 0 0 4px;
  }
  .bio { font-size: 16px; line-height: 1.5; color:#000; margin:0; }
  .bottom-box { background: #7f00ff; color: #fff; }
  .bottom-box p { color: #fff; }
  .bottom-box h1 { margin:0 0 14px; font-size:32px; text-align:center; letter-spacing:1px; font-family: "Courier New", sans-serif }
  .bottom-box h2 { margin:0 0 14px; font-size:24px; text-align:center; letter-spacing:1px; font-family: "Courier New", sans-serif }
  .buttons { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
  .btn-link { display:block; line-height:0; }
  .btn-img { display:block; border:none; }
  footer { color:#fff; font-size:12px; margin-top:4px; text-align:center; }
  
  .content-box { text-align:left; max-width: 100%; }
  .content-box h2 {
    margin:0 0 14px;
    padding-bottom:8px;
    border-bottom:3px double #7f00ff;
    color:#7f00ff;
    font-family:"Courier New", sans-serif;
    font-size:24px;
    letter-spacing:1px;
  }
  
  .content-box img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;  
}
  
  .content-box p { line-height:1.6; margin:0 0 12px; color:#000; max-width: 100%; }
  .content-box p:last-child { margin-bottom:0; }
  .content-box h1 { margin:0 0 14px; font-size:32px; text-align:center; letter-spacing:1px; font-family: "Courier New", sans-serif }
  .content-box a { color:#7f00ff; }
  .content-box ul { line-height:1.6; padding-left:22px; margin:0 0 14px; }
  .content-box li { margin-bottom:8px; }
  
  .writing-box { text-align:left; max-width: 100%; }
  .writing-box h2 {
    margin:0 0 14px;
    padding-bottom:8px;
    border-bottom:3px double #7f00ff;
    color:#7f00ff;
    font-family:"Courier New", sans-serif;
    font-size:24px;
    letter-spacing:1px;
  }
  
  .writing-box p { line-height:2.0; margin:0 0 12px; color:#000; max-width: 100%; text-indent: 50px; }
  .writing-box p:last-child { margin-bottom:0; }
  .writing-box h1 { margin:0 0 14px; font-size:32px; text-align:center; letter-spacing:1px; font-family: "Courier New", sans-serif }
  .writing-box a { color:#7f00ff; }
  .writing-box ul { line-height:1.6; padding-left:22px; margin:0 0 14px; }
  .writing-box li { margin-bottom:8px; }
  
.art-list {
  list-style:none;
  margin:0;
  padding:0;
}

.art-row {
  display:flex;
  gap:16px;
  align-items:flex-start;
  padding:10px 0;
  border-bottom:1px solid #e2d0ff;
}
.art-row:last-child { border-bottom:none; }

.art-preview {
  flex:0 0 90px;
  width:90px;
  height:90px;
  border:2px solid #7f00ff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-family:"Courier New", sans-serif;
  color:#7f00ff;
  text-align:center;
  padding:4px;
}
.art-preview { background:#f5ecff; }

.art-info {
  display:flex;
  flex-direction:column;
  text-align:left;
}

.art-title {
  font-family:"Courier New", sans-serif;
  font-size:18px;
  font-weight:bold;
  color:#7f00ff;
  text-decoration:underline;
  margin-bottom:4px;
}
.art-title:hover { text-decoration:underline; }

.art-date {
  font-size:12px;
  color:#888;
  margin:0 0 4px;
  font-family:Georgia, sans-serif;
}

.art-desc {
  font-size:14px;
  color:#555;
  line-height:1.4;
  margin:0;
}

@media (max-width: 700px) {
  .wrap { width:92%; }
  .art-preview { flex:0 0 70px; width:70px; height:70px; font-size:10px; }
}