
	
	
	


	
	
	

   

 

 

@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');

* {
    margin: 0;
    padding: 35px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: #2d0720;
}

.god {
    position: absolute;
    color: #420e32;
    width: 100%;
    text-align: center;
}

h2 {
    letter-spacing: 10px;
    font-size: 9em;
    /* Removed the reflection effect */
    /* -webkit-box-reflect: below 1px linear-gradient(transparent,#0008); */
    line-height: 0.75em;
    outline: none;
    animation: animate 10s linear infinite;
}

p {
    letter-spacing: 9px;
    font-size: 2.5em;
    /* Removed the reflection effect */
    /* -webkit-box-reflect: below 1px linear-gradient(transparent,#0008); */
    line-height: 0.89em;
    outline: none;
    animation: animate 8s linear infinite;
}

a {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: #2196f3;
    text-decoration: none;
    font-size: 24px;
    overflow: hidden;
    font-weight: 400;
    letter-spacing: 4px;
    transition: 0.2s;
}

a:hover {
    color: #fff;
    background: #2196f3;
    box-shadow: 0 0 10px #2196f3, 0 0 40px #2196f3, 0 0 80px #2196f3;
    transition-delay: 3s;
}

a span {
    position: absolute;
    display: block;
}

a span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2196f3);
}

a:hover span:nth-child(1) {
    left: 100%;
    transition: 1s;
}

a span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #2196f3);
}

a:hover span:nth-child(3) {
    right: 100%;
    transition: 1s;
    transition-delay: 0.5s;
}

a span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #2196f3);
}

a:hover span:nth-child(2) {
    top: 100%;
    transition: 1s;
    transition-delay: 0.25s;
}

a span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #2196f3);
}

a:hover span:nth-child(4) {
    bottom: 100%;
    transition: 1s;
    transition-delay: 0.75s;
}

/* Animation: Reduced intensity of shadows for better visibility */
@keyframes animate {
    0%, 18%, 20%, 50.1%, 60%, 65.1%, 80%, 90.1%, 92% {
        color: #0e3742;
        text-shadow: none;
    }

    18.1%, 20.1%, 30%, 50%, 60.1%, 65%, 80.1%, 90%, 92.1%, 100% {
        color: #fff;
        text-shadow: 0 0 5px #03bcf4, /* Reduced shadow blur */
        0 0 10px #03bcf4, 
        0 0 20px #03bcf4, 
        0 0 40px #03bcf4, 
        0 0 80px #03bcf4;
    }
}

        text-shadow: 0 0 5px #03bcf4, /* Reduced shadow blur */
        0 0 10px #03bcf4, 
        0 0 20px #03bcf4, 
        0 0 40px #03bcf4, 
        0 0 80px #03bcf4;
    }
}
