:root {
  --text-color: rgb(165, 121, 255);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-color);
  background-color: rgb(29, 25, 25);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 95vh;
  overflow: hidden;
}
.inputArea {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 6vw;
  border: 2px solid black;
  box-shadow: 0 0 10px 3px rgb(0, 0, 0);
  max-width: 700px;
  min-width: fit-content;
}
.inputArea .header {
  margin-bottom: 2em;
}

.inputArea .header::after {
  content: "";
  position: relative;
  top: 0.5em;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background-color: var(--text-color);
}
.inputArea input {
  max-width: 700px;
  height: 1.5rem;
}
body[data-clips-shown="true"] .inputArea {
  max-width: none;
  padding: 0;
  border: none;
  box-shadow: none;
}
body[data-clips-shown="true"] .inputArea .header {
  margin-bottom: 0;
}
body[data-clips-shown="true"] .inputArea .header::after {
  display: none;
}
body[data-clips-shown="true"] .inputArea input {
  max-width: none;
}
body[data-clips-shown="true"] {
  height: auto;
  overflow: auto;
}

a {
  display: block;
  padding: 0.5rem 0;
  color: rgb(179, 179, 238);
}
a:hover {
  color: rgb(120, 120, 205);
}
button {
  margin-top: 1em;
  display: block;
  padding: 1rem;
  margin-bottom: 1em;
  cursor: pointer;
}

#desc {
  font-size: 0.9em;
  font-weight: normal;
  display: block;
  margin-bottom: 1.4em;
}
h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
}
#videos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.video {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  width: 100%;
  max-width: 700px;
}
.video a {
  color: var(--text-color);
  font-weight: 600;
  font-size: larger;
}
.video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin-bottom: 1em;
}

.linkHelp,
.linkIssues {
  color: inherit;
  /* add color transiton */
  transition: color 0.2s;
}
.linkIssues:hover,
.linkHelp:hover {
  transition: color 0.2s;
  color: rgb(0, 183, 160);
}
.linkIssues {
  display: none;
  font-size: 1.5em;
  text-decoration: none;
}

body[data-clips-shown="true"] .linkHelp {
  display: none;
}
body[data-clips-shown="true"] .linkIssues {
  display: none;
}
