@import url('https://fonts.googleapis.com/css2?family=Hahmlet:wght@100..900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
}

html,
body {
	height: 100%;
	overflow: scroll;
}

body::-webkit-scrollbar {
  display: none;
}

html {
    scroll-behavior: smooth;
}

body{
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
    font-family: 'Hahmlet', serif;
    font-size: 1.15rem;
    line-height: 1.5;
    word-break: keep-all;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	border-bottom: 1.5px solid
}

img {
    width: 100%;
    margin-bottom: 0.5rem;
}

.main-content {
    /* background-color: blue; */
    min-height: 95vh;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1rem 1.5rem 0rem 1.5rem;
    gap: 1rem;
}

.grid-container {
    /* background-color: blueviolet; */
    /* padding: 1rem 1.5rem 0rem 1.5rem; */
}

.content-section {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
}

.content-header {
    margin: 0 0 1rem 0;
}

.content-body {
    grid-column: 1 / -1; /* 이것도 전체를 먹이기 */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about {
    max-width: 15rem;
    margin-left: 1.5rem;
    margin-top: 1rem;
}


.indent {
    text-indent: 1.5rem;
}

.push {
    margin-left: 1.5rem;
    margin-bottom: 15rem;
}

details.year-details summary {
    list-style: none;
}

details.year-details summary::-webkit-details-marker {
    display: none;
}

details.year-details ul {
    margin-left: 1rem;
}

details.year-details ul a {
    border-bottom: none;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    height: 5vh;
    display:flex;
    justify-content: center;
    align-items: center;
    
    /* background-color: red; */
    font-size: 0.9rem;

    padding: 0 1rem;
    
}

.content-en {
    font-size: 1.12rem;
    line-height: 1.4;
    letter-spacing: -0.007rem;
}

.content-intro {
    font-size: 0.8rem;
    color: silver;
}

.content-body .content-kr {
    font-size: 0.95rem;
    line-height: 1.5;
}

.content-body .content-en {
    font-size: 0.9rem;
    line-height: 1.45;
}