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

body {
  background: #050507;
  color: #dcdcdc;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

/* canvas */
#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* layout */
.wrapper {
  max-width: 640px;
  margin: 12vh auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

/* name */
.name {
  font-size: 26px;
  letter-spacing: 0.5px;
}

/* intro */
.intro {
  font-size: 13px;
  line-height: 1.6;
  color: #a8a8a8;
}

/* sections */
.section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-title {
  font-size: 12px;
  color: #777;
}

/* items */
.item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.company {
  font-size: 13px;
  color: #e5e5e5;
}

.desc {
  font-size: 12px;
  color: #9a9a9a;
}

/* links */
.links {
  display: flex;
  gap: 18px;
  font-size: 12px;
}

a {
  color: #9aa7ff;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

/* mobile */
@media (max-width: 600px) {
  .wrapper {
    margin: 8vh 20px;
  }
}