html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.08), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.06), transparent 35%),
        #000;
    background-size: 80px 80px, 80px 80px, 600px 600px, 500px 500px;
    color: white;
}
.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.divhead {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}


.logo {
     height: 70%;
}

.divhead h1 {
    font-size: 5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(
                90deg,
                rgb(255, 255, 255),
                #45c1e7,
                white
            );
            background-size: 200% auto;
            background-position: 0% center;

            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;

            animation: shimmer 5s linear infinite;
}
.center h2{
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(
                90deg,
                rgb(255, 255, 255),
                #9b9b9b,
                white
            );
            background-size: 200% auto;
            background-position: 0% center;

            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;

            animation: shimmer 3s linear infinite;
}
 @keyframes shimmer {
            from {
                background-position: 0% center;
            }
            to {
                background-position: 200% center;
            }
        }
