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

body {
		/*letter-spacing: -0.02em;*/
    font-family: SF pro Rounded, Pretendard, sans-serif;
    font-size: 25pt;
    line-height: 135%;
    word-break: keep-all;
    padding: 30px;
    overflow: hidden;
}

p {
	padding-bottom: 10px;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 16pt;
}

th {
  border-bottom: 1px solid #000000;
  text-align: left;
  font-weight: normal;
}

.date {
	text-align: center;
}

a {
	color: black;
	text-decoration: none;

}

a:hover {
	text-decoration: underline;
	/*font-weight: bold;*/
}

thead {
  position: relative;
}

.hover-img {
  display: none;
  position: fixed;
  /*top: var(--table-top, 100px); /* 나중에 JavaScript로 동적 설정 */
  bottom:10%;
	left: 50%;
  transform: translateX(-50%);
  width: 50vw;
  min-height: 30vh;
  max-height: 60vh;
  object-fit: contain;
  border: 1px;
  z-index: -1;
}

thead:hover .hover-img {
  display: block;
}

footer {
	font-size: 15px;
	position: absolute;
	bottom: 15px;
	width:100%;
}



@media only screen and (max-width: 800px) {
  
  body {
    font-size: 15px
    }

	table {
	  font-size: 12pt;
	}

	.hover-img {
		width: 200px;

   footer {
   	font-size: 10px;
   }
}
