:root {
  --black: rgb(18, 15, 15);
  --beige: #A28D69;
;
}

body {
  margin: 0 auto;
  background-color: #F4F4F4;
  text-align: center;
}

a {
  text-decoration: none;
  color: var(--black);
}

.container {
  margin: 0 auto;
  font-family: "Epilogue", sans-serif;
  position: relative;
}

.mainview {
  position: fixed;
  width: 30vw;
  top: 25vh;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.1;
  z-index: -1;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  padding: 50px;
  width: 100%;
}

.headerLogo {
  width: 5vw;
  border-radius: 50%;
  border: 2px solid var(--black);
}

.navi {
  display: flex;
  gap: 50px;
}

.navi a {
  color: var(--beige);
  font-weight: bold;
  letter-spacing: 0.05rem;
}

.top {
  position: relative;
  height: 150vh;
}

.topTitle {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 2;
}

.topTitle h1 {
  text-wrap: nowrap;
  font-size: 2.2rem;
  letter-spacing: 0.4rem;
  font-weight: 600;
  text-shadow: 0px 0px 1px rgb(20, 19, 19);
  line-height: 1.5;
}

.topTitle h3 {
  text-wrap: nowrap;
  letter-spacing: 0.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  text-shadow: 0px 0px 1px rgb(20, 19, 19);
}

.title {
  display: inline-block;
  border-bottom: 2px solid var(--black);
  letter-spacing: 0.09rem;
  margin-bottom: 50px;
}

.work-container {
  margin-top: 100px;
}

.grid-title {
  margin: 15px 10px 10px 15px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
  color: #A28D69;
}

.grid-text {
  margin-left: 15px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  max-width: 1200px;
  margin: 50px auto;
}

.grid-container img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0px 0px 10px rgb(20, 19, 19);
}

.youtube-wrap iframe {
  width: 100%;
  height: 35vh;
  display: block;
  box-shadow: 0px 0px 10px rgb(20, 19, 19);
}


@media screen and (max-width: 890px) {
  .topTitle h3 {
    text-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .headerLogo {
    width: 10vw;
    border-radius: 50%;
    border: 2px solid var(--black);
  }

  .header-container {
    padding: 50px 20px;
  }

  .mainview {
    position: fixed;
    width: 50vw;
    top: ;
  }

  .navi {
    display: flex;
    gap: 20px;
  }

  .topTitle h3 {
    text-wrap: wrap;
  }

  .grid-container {
    grid-template-columns: 1fr;
    margin: 0 50px;
  }
}

@media screen and (max-width: 480px) {



}







