* {
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
}

html,
body {
    height: 100%;
}

body {
    color: #ccc;
    font-family:
        Helvetica Neue,
        Verdana,
        sans-serif;
    font-size: 20px;
}

p {
    line-height: 1.5em;
    list-style: none;
}
p a,
p a:visited {
    color: #56bff6;
    text-decoration: none;
}

p a:hover {
    border-bottom: 1px solid #56bff6;
}

canvas,
section {
    display: block;
}

#c {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#wordInput {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 15px;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.087);
    border-radius: 8px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 250px;
    z-index: 10;
    transition: box-shadow 0.3s ease;
}

#wordInput:focus {
    box-shadow: 0 0 15px rgb(255, 255, 255);
}

#hueInput {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.087);
    border-radius: 8px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 250px;
    z-index: 10;
    transition: box-shadow 0.3s ease;
}

#hueInput:focus {
    box-shadow: 0 0 15px rgb(255, 255, 255);
}

#attribution {
    bottom: 40px;
    position: absolute;
    right: 40px;
}
