:root {
  --third-color: #ff0080;
  --third-color-hover: #ff46a3;
}

body {
  font-size: 16px;
}

header#header {
  background-image: url(../images/dents.png);
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 30px;
}

a {
  color: var(--third-color);
  font-weight: bold;
  &:hover {
    color: var(--third-color-hover);
  }
}

#toggleBio {
  color: var(--third-color);
  &:hover {
    color: var(--third-color-hover);
  }
}

ul {
  list-style: disc;
  margin-left: 20px;
  li {
    margin-bottom: 5px;
  }
}

.skills {
  list-style: none;
  font-size: 0.9em;
  li {
    background-color: #ffffff1f;
    text-align: center;
    padding: 8px 5px;
    border-radius: 3px;
    margin-bottom: 0;
    color: #c9c9c9;
    &:hover {
      background-color: #ffffff32;
      color: #e5e5e5;
      cursor: default;
    }
  }
}

.draggable {
  transition: opacity 0.3s;
}
.drag-button {
  border: 0;
  font-size: small;
  border-radius: 80px;
  padding: 8px 12px;
  cursor: grab !important;
  text-transform: uppercase;
  display: flex;
  gap: 5px;
}
.drag-button:active {
  cursor: grabbing !important;
}