body{
    background-color: #bdc3c7;
}
h1{
    color: #9b59b6;
}
h2{
    color: orange;
}
li{
    color: #0000af;
}
p:nth-of-type(even){
    background-color:yellow;
}
input{
    border:3px solid red;
}
.hello{
    background-color: white;
}
#special{
    border: 20px solid rgb(00,00,250);
}
div p{
    font-size: 25px;
}
input[type="text"]{
    background-color: grey;
}
div:nth-of-type(3) p{
    background-color: pink;
}
div:nth-of-type(3) p:nth-of-type(2){
    border: 5px white solid;
}
div:nth-of-type(3) em{
    color: white;
    font-size: 20px;
}
h1:hover{
    color: blue;
}
div a:visited{
    color: grey;
}
label{
    text-transform:uppercase;
}   
#special:first-letter{
    color: green;
    font-size: 100px;
}
:checked{
    margin-left:50px;
}
