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

.noto-sans-kr-<uniquifier> {
  font-family: "Noto Sans KR", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
  color: forestgreen;
  word-break: keep-all;
  font-family: "Noto Sans KR";
  padding-top: 30px;
  background-color: aliceblue;
}

marquee {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3px;
  background-color: yellowgreen;
  color: white;
  z-index: 1000;
  font-family: cursive;
}

.info {
   padding: 10px;
   background-color: aliceblue;
}

h1 {
    font-size: 20pt;
    font-family: cursive;
}

h2 {
    font-size: 11pt;
    font-weight: normal;
}

p {
    line-height: 17pt;
}

.credit {
    font-size: 10pt;
}

a {
    color: forestgreen;
}

a:visited {
    color: forestgreen;
}

a:hover {
    color: white;
    background-color: forestgreen;
}

hr {
    margin-right: -10px;
    margin-left: -10px;
    border: 1px dotted forestgreen;
}

.import{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(150px,1fr));
  width:100%;
}

.import a{
  aspect-ratio:1/1;
  overflow:hidden;
}

.import img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}