/* Link Card */ .linkCard { width: 200px; height: 100px; padding: 30px; background-color: #1a1a1a; } /* Link Card H5 */ .linkCard h5 { width: 100%; padding-top: 12px; font-family: NeonSans; font-size: 12px; color: #ff9d00; text-shadow: 0 0 10px #ff9d00, 0 0 20px #ff9d00, 0 0 30px #ff9d00, 0 0 40px #ff9d00; transition: text-shadow 0.2s linear; } /* Link Card H5 Hover */ .linkCard h5:hover { text-shadow: 0 0 10px #ff9d00, 0 0 20px #ff9d00; } /* Link Card H5 First Child */ .linkCard h5:first-child { padding-top: 0; font-size: 18px; color: #8c00ff; text-shadow: 0 0 10px #8c00ff, 0 0 20px #8c00ff, 0 0 30px #8c00ff, 0 0 40px #8c00ff; } /* Link Card A */ .linkCard a { color: #ff9d00; } /* Small Screens */ @media screen and (max-width: 779px) { /* Legal Card H5 */ .linkCard h5 { text-align: center; } }