
body{
    background: #000;
    max-width: 100%;
    background: -webkit-linear-gradient(to bottom right, #000000, #b60000);
    background: linear-gradient(to bottom right, #000000, rgb(12, 12, 51));
    min-height: 100vh;

}

.souli{
    text-decoration: none;
}

.h1{
    font-size: 7em;
    text-align: center;
    margin-top: 1%;
    background-color: rgb(5, 5, 22);
    line-height: 0px;
    text-decoration: none;
}

.headr{
    height: 215px;
    background-color: rgb(5, 5, 22);
    position: static;
    text-decoration: none;
}

.card {
    --border-radius: 15px;
    --border-width: 4px;
    appearance: none;
    position: relative;
    padding: 1em 2em;
    border: 0;
    background: rgb(5, 5, 22);
    color: #fff;
    border-radius: 15px;
    z-index: 2;
    text-decoration: none;
   }
   
   .card::after {
    --m-i: linear-gradient(#000, #000);
    --m-o: content-box, padding-box;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 217px;
    padding: var(--border-width);
    border-radius: var(--border-radius);
    background-image: conic-gradient(
            #0062ff,
		    #00ffd5,
		    #e5ff00,
		    #ff9900,
	    	#ff00bf,
	    	#2f1dfc,
	    	#0062ff
       );
    -webkit-mask-image: var(--m-i), var(--m-i);
    mask-image: var(--m-i), var(--m-i);
    -webkit-mask-origin: var(--m-o);
    mask-origin: var(--m-o);
    -webkit-mask-clip: var(--m-o);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    filter: hue-rotate(0);
    animation: rotate-hue linear 800ms infinite;
    animation-play-state: paused;
   }
   
   .card:hover::after {
    animation-play-state: running;
   }

@keyframes rotate-hue {
    to {
     filter: hue-rotate(1turn);
    }
   }
   
   .card,
   .card::after {
    box-sizing: border-box;
   }
   
   .card:active {
    --border-width: 5px;
   }

.Article{
    color: white;
    position: relative;
    font-size: 4.2em;
    width: 100%;
    height: 100%;
    text-align: center;
    word-spacing: 120px;
    line-height: 380px;
    margin-top: 2%;
    
}

.carde {
    --border-radius: 15px;
    --border-width: 4px;
    appearance: none;
    position: relative;
    padding: 1em 2em;
    border: 0;
    background: rgb(5, 5, 22);
    color: #fff;
    border-radius: 15px;
    z-index: 2;
    text-decoration: none;
   }

   .carde::after {
    --m-i: linear-gradient(#000, #000);
    --m-o: content-box, padding-box;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 210px;
    padding: var(--border-width);
    border-radius: var(--border-radius);
    background-image: conic-gradient(
            #488cfb,
		    #29dbbc,
		    #ddf505,
		    #ff9f0e,
	    	#e440bb,
	    	#655adc,
	    	#488cfb
       );
    -webkit-mask-image: var(--m-i), var(--m-i);
    mask-image: var(--m-i), var(--m-i);
    -webkit-mask-origin: var(--m-o);
    mask-origin: var(--m-o);
    -webkit-mask-clip: var(--m-o);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    filter: hue-rotate(0);
    animation: rotate-hue linear 500ms infinite;
    animation-play-state: paused;
   }
   
   .carde:hover::after {
    animation-play-state: running;
   }