@font-face {
  font-family: "Montserrat";
  src: url("/font/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-stretch: normal;
  font-style: normal;
  font-weight: 100 900;
}
/*
@font-face {
	font-family: "Montserrat";
	src: url('/font/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
	font-stretch: normal;
	font-style: italic;
	font-weight: 100 900;
}
*/
@font-face {
  font-family: "Rubik";
  src: url("/font/Rubik/Rubik-VariableFont_wght.ttf") format("truetype");
  font-stretch: normal;
  font-style: normal;
  font-weight: 100 900;
}
@font-face {
  font-family: "Rubik";
  src: url("/font/Rubik/Rubik-Italic-VariableFont_wght.ttf") format("truetype");
  font-stretch: normal;
  font-style: italic;
  font-weight: 100 900;
}
.flex-100vh {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.cubeSide,
.cubeFloor {
  bottom: -0.875rem;
  left: -0.875rem;
  pointer-events: none;
  position: absolute;
  transform-origin: 0% 100%;
}
@media screen and (max-width: 660px) {
  .cubeSide,
.cubeFloor {
    display: none;
  }
}

.cubeSide {
  background-color: #8b0e9a;
  height: 100%;
  transform: skew(0, -45deg);
  width: 0.875rem;
}

.cubeFloor {
  background-color: #55095e;
  height: 0.875rem;
  transform: skew(-45deg, 0);
  width: 100%;
}

body.work {
  background-color: #000;
}

body.work section.contentWorkList {
  margin-top: 2rem;
  max-width: 100vw;
  min-width: 30.75rem;
  width: 64.75rem;
}

body.work h1 {
  margin-bottom: 3rem;
}

body.work .workList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 3.25rem;
  justify-content: center;
  list-style-type: none;
}
@media screen and (max-width: 660px) {
  body.work .workList {
    padding: 0 0.5rem;
  }
}
body.work .workList li {
  height: 17.296875rem;
  position: relative;
  width: 30.75rem;
}
body.work .workList li a {
  background-color: #000;
  background-position: 50% 50%;
  background-size: 100%;
  border: 2px solid #55095e;
  border-radius: 0.5rem;
  display: block;
  height: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: border 0.25s cubic-bezier(0.16, 0.56, 0.8, 1), background-size 0.38s cubic-bezier(0.16, 0.56, 0.8, 1);
  width: 100%;
}
body.work .workList li a .title {
  backdrop-filter: blur(16px);
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.01em;
  background-color: rgba(0, 0, 0, 0.67);
  border-top-left-radius: 0.375rem;
  border-bottom-right-radius: 0.5rem;
  color: #fdf8ff;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 400;
  left: 0;
  letter-spacing: 0.05em;
  line-height: 1.5rem;
  padding: 0.75rem 1.5rem;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  word-spacing: 0.125em;
  z-index: 1;
}
body.work .workList li a .noiseTexture {
  opacity: 0.3;
  transition: all 0.38s cubic-bezier(0.3, 0.05, 0.35, 0.97);
}
@media screen and (max-width: 660px) {
  body.work .workList li a .noiseTexture {
    display: none;
  }
}
body.work .workList li a:hover {
  border: 2px solid #fdf8ff;
  background-size: 105%;
}
body.work .workList li a:hover .noiseTexture {
  opacity: 0.05;
}