body {
    font-family: "Cutive Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 2;
    padding-top: 20px;
    background-color: hsl(0, 0%, 2%);
    color: hsl(0, 0%, 70%);
    padding-bottom: 100px;
}

a.current {
    color: hsl(225, 72%, 56%);
}

a:hover {
    cursor: pointer;
}

h1 {
    margin: 0;
}

a {
    color: hsl(225, 72%, 75%);
}

th {
    padding-left: 10px;
    margin: 0;
    text-align: left;
    font-weight: 800;
    color: hsl(42.73, 26.83%, 51.76%)
}

table {
    border: 1px solid hsl(0, 0%, 10%);
}

thead th {
    border-bottom: 1px solid hsl(0, 0%, 10%);
}

.excluded {
    color: hsl(0, 0%, 25%);
    background-color: hsl(110, 100%, 100%);
}

tr.excluded {
    color: hsl(0, 0%, 25%);
}

tr.excluded:nth-child(even) {
    background-color: hsl(0, 0%, 3%);
}

tr.excluded:nth-child(odd) {
    background-color: hsl(0, 0%, 0%);
}

tr:nth-child(even) {
    background-color: hsl(0, 0%, 9%);
}

tr:nth-child(odd) {
    background-color: hsl(0, 0%, 7%);
}

tr:hover {
    background-color: hsla(120, 100%, 50%, 25%);
}

td {
    padding-left: 10px;
}

td:hover {
    background-color: hsla(120, 100%, 50%, 30%);
    cursor: pointer;
}

ul {
    list-style: none;
    margin: 0;
    padding-left: 20px;
}

p {
    margin: 0;
}

.wrapper {
    display: grid;
    grid-template-columns: 25% 75%;
}

.copied {
    animation: blink-animation 0.33s steps(3, start) infinite;
}

@keyframes blink-animation {
    to {
      color: hsl(120, 100%, 30%);
    }
  }