h1{ color: rgb(255,255,255);
    background-color: rgb(135,206,235);
    font-weight: bold;
    font-family: italic;
    padding: 3px;
    display: inline-block;
    box-sizing: content-box;
    border: solid rgb(255,255,255) 3px;
    filter: brightness(120%);
    text-transform: capitalize;
    -webkit-text-stroke-color: Black;
    -webkit-text-stroke-width: 2px;
    -webkit-font-smoothing: antialiased;
    -webkit-animation: random 10s infinite;
    animation: random 5s infinite;
    text-decoration-line: overline underline;}
    @keyframes random{
        10% { filter: brightness(200%)}
        90% { filter: brightness(100%)}  }
h3{color: yellow;
    background-color: rgba(0,0,50.2,20) ;
    padding: 2px;
    display: inline-block;
    font-family: system-ui;
    box-sizing: content-box;
    border: solid yellow 3px;
    background: linear-gradient(to right, navy, skyblue);
    display: inline-block;
    text-transform: capitalize;
    filter: brightness(120%);
}
body{background-color: rgb(135,206,235)
    -webkit-animation; random 10s infinite;
animation : random 10s infinite;
transition: all 1s;}
@keyframes random {
60% { background-color: skyblue; }
10% { background: linear-gradient(white); } }
p{ font-family: ui-serif;
    text-shadow: 2px 2px rgb(255,255,255);
    font-size: 18px ;
    color: rgb(0,0,0) ;
    text-decoration: underline overline;
    text-transform: capitalize;
    padding: 3px;
    word-break: break-all;
    cursor: pointer;
    transition: all 0.5s;}
p:hover{ font-size: 25px;}
h2{-webkit-text-stroke-color: blue;
    -webkit-text-stroke-width: 2px;
    color: rgb(255,255,255);
    font-size: 30px;
        display: inline-block;
        border: 5px dashed blue;
        border-radius: 3px;
    background: linear-gradient(to left, blue, white);
    text-transform: capitalize;
    text-align: center}
img{box-sizing: content-box;
    border: 30px solid white;
    box-shadow: 15px 15px 15px rgba(255, 255, 255, 0.9);
    padding: 3px;
    text-align: center;
    float: 1;
    filter: contrast(1.2);
    filter: blur(-5px);
    filter: saturate(1);}
h4{font-family: fantasy;
    filter:brightness(115);
    text-transform: capitalize;
    font-size: 20px;
    color: white ;
    -webkit-text-stroke-color: black;
    display: inline-block;
    border: 2px dashed white;
    border-radius: 2px;
    text-decoration: underline;
    padding: 3px;
    text-decoration-color: red;}
h5{font-family: fantasy;
    float: 5 ;
    color: navy ;
    font-size: 20px ;}
    hr{border: 10px 10px black;
    float:2;
    border: 2px solid skyblue;}
    h6{font-family: fangsong;
    font-size: 18px;
    text-align: center;
    text-transform: capitalize;
    cursor:pointer;
    transition: all 0.5s;
    text-transform: uppercase;
    color: rgb(0,0,1);}
h6:hover{font-family: cursive;
    color: purple;
    padding: 3px;
    font-size: 20px;
    transition: all 0.5s;}
