/* unvisited link */
a:link,
a:visited {
    color          : rgb(128, 128, 128);
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color          : rgb(255, 255, 255);
    text-decoration: none;
}

/* selected link */
a:active {
    color          : rgb(255, 255, 255);
    text-decoration: none;
}


#social {
    user-select: none;
    font-family: 'Social Shapes', sans-serif;
    position   : relative;
    top        : 2px;
    transition : all 0.5s ease;
}

#social a {
    text-decoration: none;
    color          : rgb(41, 40, 43);
    transition     : all 0.5s ease;
}

#social a:hover {
    color     : rgb(0, 12, 144);
    transition: all 0.5s ease;
}

input:hover::placeholder {
    opacity   : 0.2;
    transition: all 0.5s ease;
}