:root {
  --main-color: rgb(0, 0, 0);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-size: 1rem;
}

ul {
  list-style: none;
}

.menu {
  width: auto;
  position: fixed;
  line-height: 1rem;
  top: 0;
  z-index: 9999;
}

ul {
  padding: 8px;
  margin: 0;
}

.menu ul li {
  display: inline-block;
}

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

.about {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 8px;
}

.text-wrapper {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-flow: row;
  gap: 8px;
}

.text {
  width: 50%;
  padding-right: 10%;
}

.contact,
.adress,
.dank {
  width: 16.6666666667%;
}

.about img {
  position: absolute;
  width: calc(33.3333333333% - 16px);
  right: 8px;
  top: 8px;
}

@media (hover: hover) {
  a:hover {
    font-style: italic;
  }
  p a:hover {
    color: rgb(0, 0, 0);
    cursor: pointer;
  }
  .project-menu ul li:hover {
    border-bottom: 1px solid black;
  }
}
@font-face {
  font-family: "farrari";
  src: url("https://janajenarin.ch/assets/fonts/FarrariBETAv1-Regular.woff2") format("woff2");
  src: url("https://janajenarin.ch/assets/fonts/FarrariBETAv1-Regular.woff") format("woff");
  src: url("https://janajenarin.ch/assets/fonts/FarrariBETAv1-Regular.ttf") format("truetype");
}
body {
  font-family: "farrari", Helvetica, sans-serif;
  line-height: 1.2rem;
  font-feature-settings: "ss02", "ss03", "ss05", "ss06", "ss07", "ss09", "ss10", "ss11";
}

body.is-cursor-active {
  cursor: none;
}

body.is-cursor-active .cursor .cursor__shape {
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

body.is-cursor-active .cursor.is-mouse-down .cursor__cursor {
  transform: scale(0.9) translate3d(-50%, -50%, 0) rotate(0deg);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  color: rgb(0, 255, 162);
  font-size: 2em;
  text-shadow: 0 0 10px rgb(0, 202, 115);
}

.cursor.is-active .cursor__cursor {
  transform: scale(1) translate3d(-50%, -50%, 0) rotate(0deg);
}

.cursor__cursor img {
  position: relative;
  width: 60px;
  height: auto;
}

@media only screen and (max-width: 600px) {
  .menu {
    width: 100%;
  }
  .menu ul {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */