@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.contact {
  background-color: #000;
}
body.contact main section {
  margin-top: 2rem;
}
body.contact .contactLinks {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 1rem;
}
@media screen and (max-width: 660px) {
  body.contact .contactLinks {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 0 0.5rem;
  }
}
body.contact .contactLinks a {
  background-color: #000;
  border: 2px solid #a1b;
  border-radius: 0.5rem;
  box-sizing: border-box;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 0.5rem;
  height: 6rem;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 660px) {
  body.contact .contactLinks a {
    border-radius: 0.75rem;
    width: 100%;
  }
}
body.contact .contactLinks a, body.contact .contactLinks a * {
  cursor: pointer;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.3, 0.05, 0.35, 0.97);
}
body.contact .contactLinks a i {
  color: #e4b3eb;
  font-size: 1.5rem;
}
body.contact .contactLinks a label {
  font-family: Montserrat, sans-serif;
  letter-spacing: 0.01em;
  color: #e4b3eb;
  font-size: 0.9rem;
  font-weight: 400;
}
body.contact .contactLinks a .cubeSide, body.contact .contactLinks a .cubeFloor {
  z-index: -1;
}
body.contact .contactLinks a:hover {
  background-color: #55095e;
  border: 2px solid #e4b3eb;
}
body.contact .contactLinks a:hover i, body.contact .contactLinks a:hover label {
  color: #fdf8ff;
}
body.contact .contactLinks a:hover .cubeSide {
  background-color: #e4b3eb;
}
body.contact .contactLinks a:hover .cubeFloor {
  background-color: #a1b;
}