body {
  margin: 50px 200px 0px 200px; /* remove bottom margin */
}

header {
  display: flex;
  justify-content: space-between; /* pushes left & right apart */
  align-items: center;            /* keeps them on same horizontal line */
  padding: 10px 20px;
}

body {
  cursor: url("imgHeader/cursor.png"), auto;
}
a:hover {
  cursor: url("imgHeader/cursorHover.png"), pointer;
}
.not-allowed {
  cursor: url("imgHeader/cursorUnavailable"), not-allowed;
}

.logo img {
  width: 180px;  /* adjust your logo size */
  height: auto;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: black;
  font-weight: bold;
}
.aboutIdle{
    width: 40px;
    height: auto;
}
.aboutMeIcon{
    width: 40px;
    height: auto;
}
.designIcon{
    width: 120px;
    height: auto;
}

.illustrationIcon{
    width: 170px;
    height: auto;
}

.motionIcon{
    width: 120px;
    height: auto;
}

.bookTypoImg{
    max-width: 100%;
    margin-top: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 2 equal columns */
  gap: 20px;
}

.gallery img {
  width: 100%;
  object-fit: cover;
}

.gallery2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.gallery2 img {
  width: 100%;
  object-fit: cover;
}

.gallery3 {
  gap: 20px;
  margin-top: 20px;
  align-items: center;
  display: flex;
  justify-content: center; /* 가로 가운데 */
}
.gallery3 img {
  width: 50%;
  object-fit: cover;
}

.bottomContact{

  background-color: black;
  color: white;
  height: 250px;

  width: 100%;              /* full screen width */
  position: relative;

  margin-left: calc(-50vw + 50%);  /* breaks out of body margins */
  margin-right: calc(-50vw + 50%);
  padding: 40px 200px;
  display: flex;
  flex-direction: row;
  gap: 500px;

}

.contactTitle {
  font-family: 'fontTitle';
  font-size: 20px;
}
.contactDescription{
  font-family: 'fontDescription';
  font-size: 18px;
}

.socialIcons{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.X {
  width: 40px;
  height: auto;
}
.insta {
    width: 40px;
  height: auto;
}
.youtube{
  width: 45px;
  height: auto;
}

.Designdescription{
  font-family: 'fontDescription';
  font-size: 18px;
}


.subTitle{
  font-family: 'fontTitle';
  font-size: 40px;
  background-color: black;
  color: white;
}

.subTitle p {
  margin-top: 10px;
  padding-bottom: 5px;
  padding-left: 10px;
}

@font-face {
  font-family: 'fontTitle';
  src: url(fonts/NikkyouSans-mLKax.ttf);
}

@font-face {
  font-family: 'fontDescription';
  src: url(fonts/后弃\ 2020\ Medium.ttf);
}