.section.app {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #18181B;
    /* background: rgb(93, 68, 183); */
    /* background: linear-gradient(54deg, rgba(93, 68, 183, 1) 0%, rgba(125, 105, 197, 1) 100%); */
    overflow: hidden;
    min-height: 100vh;
}

.app-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100px;
    text-transform: uppercase;
}

.app-text {
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.strend-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-family: 'Poppkorn', sans-serif;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    padding-top: 7px;
    font-size: 5rem;

}

.app-strend-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    margin: 0 0 20px 20px;
}

.app-strend-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.emblem-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
}

.emblem {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-weight: 600;
    color: var(--white);
    animation: spinZ 20s linear infinite;
    text-align: center;
    margin: 0 auto;
    margin: 0 20px 20px 0;
}

.emblem span {
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0, 0, 0, 1);
    pointer-events: none;

}

@keyframes spinZ {
    0% {
        transform: rotateZ(360deg);
    }

    100% {
        transform: rotateZ(0deg);
    }
}

.emblem-wrapper:hover {
    animation: breathe 1s infinite;
}

@keyframes breathe {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.shimmer {
    display: inline-block;
    color: var(--white);
    background: var(--white) -webkit-gradient(linear, 100% 0, 0 0, from(var(--white)), color-stop(0.5, rgba(24, 24, 27, 0.5)), to(var(--white)));
    background-position: -4rem top;
    /*50px*/
    background-repeat: no-repeat;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-name: shimmer;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-delay: 5s;
    /* Add this line */
    background-size: 4rem 100%;
    /*50px*/
}

@keyframes shimmer {
    0% {
        background-position: -4rem top;
        /*50px*/
    }

    100% {
        background-position: 20rem top;
        /*200px*/
    }
}

@media (max-width: 600px) {
    .emblem {
        display: none;
    }
}
