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

html {
  font-size: 62.5%;
  font-family: Helvetica, sans-serif;
}

body {
  width: 100vw;
  max-width: 250rem;
  background: #FFFFFF;
  font-size: 1.2rem;
  line-height: 1.7rem;
  min-height: 100dvh;
  font-family: Helvetica, sans-serif;
  padding: 2rem;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100dvh - 4rem);
}

.main a {
  text-decoration: none;
  color: rgb(131, 131, 131);
  font-weight: 300;
  font-style: italic;
  cursor: pointer;
}

.main a:hover {
  opacity: .5;
}

.name {
  font-weight: 500;
  font-size: 1.4rem;
}

.work-title {
  margin-top: 1rem;
  margin-bottom: .1rem;
}

.footer {
  padding-top: 1rem;
}

.footer :nth-child(1) {
  margin-right: .5rem;
}

@media screen and (max-width: 1050px) {
  .projects-section {
    flex-wrap: wrap;
  }
}
