/* 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." body {
    background: black url(/neocities.png); /* ���� ���� � ���� � ����� */
body {
    text-align: center;
    word-break: break-word;
    background: black url(./images/bg.jpg);
    color: #c9bfd6;
    font-family: "Lucida Console", Monospace;
    margin: 0px;
    min-width: 500px;
}

main {
  max-width: 978px;
  min-height: calc(100vh - 200px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0px auto;
  gap: 10px 10px;
}
.images {
    text-align: center;
    padding: 16px 14px 14px 14px;
}
.images img{
    object-fit: contain;
    max-height: 300px;
    width: 100%;
    max-width: 546px;
}
.mid {
  display: flex;
  flex-direction: column;
  max-width: 550px;
  width: 550px;
  min-width: 100px;
  }
nav {
  position: sticky;
  display: flex;
  flex-direction: column;
  max-width: 200px;
  min-width: 150px;
  width: 150px;
  height: 100%;
  gap: 2px;
  }
nav a {
  width: calc(100% - 24px);
  font-weight: bolder;
  align-items: center;
  text-align: left;
  height: 100%;
  text-decoration: none;
  padding: 16px 12px;
  background-color: black;
  color: #c9bfd6;
  cursor: pointer;
  transition: background-color, color;
  }
  .sel_nav {
    text-align-last: justify;
  }
  nav a:hover {
  background: #c9bfd6;
  color: black;
  }

footer {
    position: relative;
    width: calc(100%);
    height: 60px;
    max-height: 100px;
    min-height: 100px;
}

header {
    position: relative;
    width: calc(100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-height: 100px;
    min-height: 100px;
}

.title {
    width: 100%;
    padding: 8px;
    background: #322247;
    font-size: 8pt;
    height: 60px;
    background-position: center top;
}

.box {
    background-image: url(./images/grass.png);
    background-position: center top;
    position: relative;
    width: 100%;
    height: 100%;
}

.topic {
  text-align-last: justify;
  padding: 2px 10px;
  border-bottom: 2px dashed #c9bfd6;
  }
.window {
    width: calc(100% - 4px);
    background-color: black;
    border: 2px solid #c9bfd6;
    margin: 0 0 0 0;
}
.text {
  padding: 16px 14px 14px 14px;
  text-align: left;
  }
ul {
  margin: 0 0 0 0;
  padding: 8px 14px 8px 14px;
  }
section {
  margin-bottom: 10px;
  }

A {
    color: #764cad; /* ���� ������ */
}
