@font-face {
   font-family: 'Pretendard-Regular';
   src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
   font-weight: 400;
   font-style: normal;
}

@font-face {
   font-family: 'S-CoreDream-3Light';
   src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
   font-weight: normal;
   font-style: normal;
}

h1 {font-family: 'Pretendard-Regular'; padding-top: 40px;}
h2 {font-family: 'S-CoreDream-3Light';}
p {font-family: 'S-CoreDream-3Light';}


img {
  width: 90%; 
  height: 250px;
  border-radius: 10px;
}

table, td, tr {
   /*border: 1px; solid color: black;*/
   border-collapse: separate;
   border-spacing: 10px;
   border-radius: 20px;
}

tr {
   background-color: aliceblue;
   transition: 0.5s linear;
}

tr:nth-child(even) {
   background-color: rgb(219, 247, 144);
}

tr:nth-child(odd) {
   background-color: rgb(190, 255, 255);
}

tr:nth-child(odd):hover {
   background-color: rgb(142, 235, 241);
   transform: scale(1.03);
}

tr:nth-child(even):hover {
   background-color: rgb(181, 234, 132);
   transform: scale(1.03);
}

td {
   text-align: center;
   padding: 10px 5px 10px 5px;
}

tr.t-blank {background-color: white;}