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;
}

.MainImg{
    width: 100%;
    height: auto;
}

.gallaryWrapper{
  margin-bottom: 100px;
}

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

.gallery img {
  width: 100%;
}



.image-container {
  aspect-ratio: 16 / 9;
  overflow: hidden; /* prevents zoom from spilling out */
}

.image-container img {
  width: 100%;
  display: block;

  /* idle state */
  filter: grayscale(100%);
  transform: scale(1);

  /* smooth transition */
  transition: filter 0.4s ease, transform 0.4s ease;
}

.image-container:hover img {
  /* hover state */
  filter: grayscale(0%);
  transform: scale(1.05); /* slight zoom */
}
.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);
}

.year{
  font-family: 'fontDescription';
  font-size: 32px;
  color: gray;
}

.year p {
  margin-bottom: 10px;
}

.designDescription{
  width: 100%;
  display: flex;
  align-items: end;
  font-family: 'fontDescription';
}
.designDescriptionDescription{
  font-family: 'fontDescription';
}

.designDescriptionBox{
  width: 100%;
  align-items: end;
}
.designDescriptionTitle{
  font-size: 20px;
  color: white;
  background-color: black;
  padding-left: 10px;
  padding-bottom: 7px;
  padding-top: 5px;
}

.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;
}