@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --dark: rgb(10, 10, 10);
  --light: rgb(243, 243, 243);
  --light-transparent: rgba(243, 243, 243, 0.1)
}

html {
  cursor: none;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: var(--dark);
  color: var(--light);
  font-family: "Poppins";
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.cursor {
  width: 30px;
  height: 30px;
  background-color: var(--light);
  opacity: 0.7;
  border-radius: 50%;
  position: fixed;
  display: none;
  transition: width 0.25s ease, height 0.25s ease;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

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

nav {
  position: fixed;
  width: 100%;
  z-index: 5;
}

ul {
  list-style-type: none;
  padding: 0;
}

.links {
  display: flex;
  justify-content: center;
}

.link {
  margin: 0 120px;
}

.home {
  height: 100vh;
}

.main-text {
  position: absolute;
  top: 17%;
  font-size: 12rem;
  line-height: 12rem;
  font-weight: 500;
}

.text {
  position: absolute;
}

.text-3 {
  position: relative;
  font-size: 3rem;
  font-weight: 400;
}

.projects {
  height: 80vh;
  display: flex;
  justify-content: center;
  gap: 1.5vw;
  margin: 0 1.5vw;
  padding-top: 20vh;
}

.projects-title {
  position: absolute;
  top: 105%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  font-weight: 500;
}

.project {
  height: min-content;
  background-color: var(--light-transparent);
  border-radius: 0.9rem;
  width: 100%;
}

.project-image {
  width: inherit;
  border-radius: 0.9rem 0.9rem 0 0;
  opacity: 0.8;
}

.project-info {
  padding: 1.3rem 1.5rem;
}

.project-title {
  font-size: 2.3rem;
  font-weight: 600;
  padding-bottom: 0.2rem;
}

.project-desc {
  font-size: 1.2rem;
}

.final-project {
  display: flex;
  padding-top: 10vh;
}

.fp-gallery {
  width: 40%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.fp-gallery div {
  display: flex;
  gap: 1rem;
}

.fp-gallery img {
  border-radius: 5px;
}

.fp-text {
  width: 60%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  justify-content: space-evenly;
  padding: 0 8vw;
}

.current-work {
  display: flex;
  padding-top: 10vh;
  align-items: center;
}

.cw-text {
  width: 40%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  font-size: 1.3rem;
  justify-content: space-evenly;
  padding: 0 8vw;
}

.cw-gallery {
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.cw-gallery div {
  display: flex;
  gap: 1rem;
}

.cw-gallery img {
  border-radius: 5px;
  opacity: 0.9;
}

.mm-link {
  opacity: 0.8;
  width: max-content;
}