@import url("https://use.typekit.net/pig3mrf.css");

:root {
  --purple: #7233ff;
  --red: #ea4335;
  --yellow: #ffea0f;
  --blue: #055ffb;
}

body {
  line-height: 1.5;
  font-family: "ernst", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-style: normal;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  margin: 0;
  width: 100%;
  min-height: 100%; /* requires for 'mix-blend-mode' */
  cursor: none;
  background-color: #fff; /* requires for 'mix-blend-mode' */
}

.navbar {
  top: 0;
  position: absolute;
  max-height: 80px;
  padding: 20px 0;
  display: flex;
  width: 100vw;
  align-items: center;
  justify-content: space-between;

  p {
    padding: 0 30px;
  }
}
.page {
  display: flex;
  height: 100vh;
  width: 100vw;
  margin: 0;
  justify-content: center;
  align-items: center;
}
main {
  width: 65%;
  margin: auto;
}

.themes-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
}

.theme span {
  font-weight: 600;
}
.preview {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 20rem;
  /* display: none; */
}

.footer {
  position: absolute;
  bottom: 0;
  max-height: 80px;
  padding: 20px 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;

  .left {
    display: flex;
    justify-content: left;
    flex-direction: column;
    padding-left: 30px;
  }
  button {
    margin-right: 30px;
  }
}

/* === Custom Cursor Styles === */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  top: var(--y, 0);
  left: var(--x, 0);
  transform: translate(-50%, -50%);
  z-index: 2;
  mix-blend-mode: difference;
  transition: transform 0.15s ease-out, width 0.15s ease-out, height 0.15s ease-out;
  pointer-events: none;
}

.cursor:hover {
  /* mix-blend-mode: difference;*/
  filter: invert(1) grayscale(1) contrast(2);
}
.cursor.hovering {
  background: #0ad695;
  opacity: 0.5;
  /* filter: invert(1); */
  /* pointer-events: none; */
  width: 48px;
  height: 48px;
  /* transform: scale(4);
  filter: alpha(opacity=100);
  -webkit-transform: scale(1.2); */
}
/* .cursor.hovering {
  filter: invert(1);
  background-color: rgba(0, 0, 0, 0.8);
  width: 38px;
  height: 38px;
  transform: scale(4);
} */
