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

body {
  background: #e5e5e5;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 48px;
  line-height: normal;
  color: #0059ff;
}

a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 15%;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

a:hover {
  color: #ff24f0;
}

.container {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  overflow: clip;
}

.profile {
  flex: 0 0 30%;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-all;
}

.works {
  flex: 0 0 70%;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-all;
}

.wip {
  color: #ff24f0;
  font-style: italic;
}

@media (max-width: 768px) {
  .profile {
    flex: 1 0 0;
  }

  .works {
    flex: 1 0 0;
  }

  .wip {
    display: block;
  }
}
