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

html {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #D2D4F0 0%, #F4F5FF 100%);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 2rem clamp(1rem, 4vw, 3rem);
}

.headline {
  font-family: 'STIX Two Text', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 7.25vw;
  line-height: 0.9;
  color: #000;
  text-align: left;
  word-break: break-word;
  padding: 0;
  max-width: 100vw;
  overflow-wrap: break-word;
  padding-top: 2rem;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 9999;
  display: none;
}

.footer div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
}

.email a {
  color: black;
  text-decoration: none;
}

.social {
  display: flex;
  gap: 2rem;
}

.social a {
  color: black;
  text-decoration: underline;
}

.mobile-works {
  display: none;
}

@media (max-width: 768px) {
  .headline {
    font-size: clamp(2rem, 12.5vw, 111px);
    padding-top: 0.3rem;
  }

  .container {
    padding: 1.5rem 1rem;
  }

  .footer {
    padding-top: 1rem;
  }

  .footer div {
    font-size: 0.8rem;
  }

  .mobile-works {
    display: block;
    margin-top: 1rem;
  }

  .mobile-works img,
  .mobile-works source {
    width: 100%;
    height: auto;
    display: block;
  }

  #custom-cursor {
    display: none !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .headline:hover+#custom-cursor {
    display: block;
  }
}