*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

html {
    scrollbar-width: none;

}
 
body {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9fb;
}

header {
    width: 100%;
    padding: 10px;
    background-color: #ffffff;
    box-shadow: #86868B 0px 0px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0px;
    margin-bottom: 20px;
}

.box-L{
    width: 100%;
    display: flex;
    justify-content: center;
}

.box-logo {
    display: flex;
    width: 100%;
    align-items: center;
}

.box-logo img {
    width: 20%;
    height: 70%;
    animation: alternate slide 1s ease-in-out;
}

/* Animetions */
@keyframes slide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        opacity: 50%;
    }

    100% {
        transform: translateX(0);
    }
}

/* =========================================
   SENDME LOGO TEXT
========================================= */

.box-name {
    display: inline-flex;
    align-items: center;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        "Segoe UI",
        sans-serif;

    font-size: 28px;
    font-weight: 800;

    letter-spacing: -1.4px;

    line-height: 1;

    cursor: pointer;

    user-select: none;

    position: relative;
}


/* =========================================
   SEND
========================================= */

#send {
    color: #071b3d;

    display: inline-block;

    transition:
        transform 0.35s ease,
        letter-spacing 0.35s ease;

}


/* =========================================
   ME
========================================= */

#me {
    position: relative;

    display: inline-block;

    background:
        linear-gradient(
            110deg,
            #0755d9 0%,
            #087cf5 35%,
            #00c8ff 65%,
            #087cf5 100%
        );

    background-size: 220% 100%;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation:
        meGradient 4s ease-in-out infinite;

    transition:
        transform 0.35s ease;
}


/* =========================================
   ME SHINE
========================================= */

#me::after {

    content: "";

    position: absolute;

    top: -10%;

    left: -80%;

    width: 45%;
    height: 120%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.85),
            transparent
        );

    transform:
        skewX(-20deg);

    opacity: 0;

    pointer-events: none;

    animation:
        logoShine 4s ease-in-out infinite;
}


/* =========================================
   GRADIENT ANIMATION
========================================= */

@keyframes meGradient {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}


/* =========================================
   SHINE ANIMATION
========================================= */

@keyframes logoShine {

    0%,
    45% {
        left: -80%;
        opacity: 0;
    }

    55% {
        opacity: 1;
    }

    70%,
    100% {
        left: 140%;
        opacity: 0;
    }

}


/* =========================================
   HOVER
========================================= */

.box-name:hover #send {

    transform:
        translateX(-2px);

    letter-spacing:
        -1px;
}


.box-name:hover #me {

    transform:
        translateX(2px)
        scale(1.03);

}


/* =========================================
   SUBTLE GLOW
========================================= */

.box-name:hover #me {

    filter:
        drop-shadow(
            0 0 10px
            rgba(0, 160, 255, 0.28)
        );

}


/* =========================================
   CLICK
========================================= */

.box-name:active {

    transform:
        scale(0.96);

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .box-name {

        font-size: 24px;

        letter-spacing: -1.1px;

    }

}