<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body,
h1,
p {
	font-family: 'Pretendard Variable';
  text-rendering: optimizeLegibility;
  background-color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8rem;
  max-width: 60rem;
  margin: 0 auto;
}

h1 {
  font-weight: 600;
}

p {
  padding: 0rem 1rem;
}

.indent {
  text-indent: 2rem;
}

.home {
  font-weight: 600;
}

a:link,
a:visited {
  text-decoration: none;
  color: black;
}

a:hover,
a:active {
  color: blue;
  cursor: pointer;
}

.nav ul {
  list-style: none;
  padding: 1rem;
  padding-bottom: 2rem;
}

.nav li {
  list-style: none;
}

hr {
  margin: 0 1rem 2rem;
}

.description {
  padding: 1rem;
  padding-bottom: 3rem ;
}

.description p {
  padding: 0;
}

.project {
  display: flex;
  padding: 1rem;
  /* background-color: aqua; */
}

.projectimg img {
  width: 100%;
  padding-bottom: 5rem;
}

.thumbnail {
  background-color: black;
  color: white;
}

.grid {
  padding: 1rem;
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-flow: dense;
  list-style: none;
}

.grid li {
  background-color: black;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail {
  display: block;
  width: 100%;
}

.bottomgrid {
  padding: 1rem;
  display: grid;
  grid-gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-auto-flow: dense;
  list-style: none;
}

.bottomgrid li {
  background-color: black;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottomgrid .thumbnail {
  display: block;
  width: 100%;
}

.bottomgrid img {
  cursor: pointer;
}</pre></body></html>