html_css
1a {2color: #333;3text-decoration: none;4/*transition: all .2s;*/5}
6
7a:hover {8color: orange;9/*font-size: 2rem;*/10}
11
12/*a:visited {
13color: red;
14}*/
15
16a:active {17color: blue;18}
19
20/*.css:hover {
21background: red;
22}*/
23.btn {24background: #111;25padding: 15px 20px;26color: white;27border: none;28cursor: pointer;29border-radius: 5px;30font-family: inherit;31}
32.btn:hover {33opacity: .8;34color: orange;35}
36