body {
  margin: 0;
  padding: 0;
}

.no-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

*, *::before, *::after {
    box-sizing: border-box;
    font-family: 'Yantramanav', sans-serif;
}

.canvas {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.canvas-new {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.skills {
  list-style-type: none;
  display: flex;
}

.skills a {
  text-decoration: none;
  color: white;
}

.skills a:hover {
  text-decoration: underline dotted;
}

.about > * {
  display: inline-block;
}

footer {
  text-align: center;
}

.copy-link {
  --height: 36px;

  display: flex;
  max-width: 250px;
}

.copy-link-input {
  flex-grow: 1;
  padding: 0 8px;
  font-size: 14px;
  border: 1px solid #cccccc;
  border-right: none;
  outline: none;
  border-radius: 1em;
  background: transparent;
  color: white;
}

.copy-link-input:hover {
  background: #2e2e2e91;
}

.copy-link-button {
  flex-shrink: 0;
  width: var(--height);
  height: var(--height);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dddddd;
  color: #333333;
  outline: none;
  border: 1px solid #cccccc;
  cursor: pointer;
  margin-left: -0.6em;
}

.copy-link-button:hover {
  background: #cccccc;
}
