.red{
    color: #F00;
}

.orange{
 color: orange;
}

#html{
    color: black;
    text-align: center;
    font-weight: bold;
}
#html:hover{
    transition: all .2s ease-in-out; 
    text-shadow: 3px 0px 1px rgba(255, 0, 0);
}

#java{
    color: black;
    text-align: center;
    font-weight: bold;
}
#java:hover{
    transition: all .2s ease-in-out; 
    text-shadow: 3px 0px 1px orange;
}
