body {
    margin: 0;
    padding: 0;

    font-size: 16px;
}

.site-wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #000;
}

.content-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
}

.image-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14rem;
    width: 12rem;
    margin-bottom: 2rem;
}

.bd-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: fadeIn 2s linear, pulsate-shadow 4s infinite;
}

.bd-text {
    flex: 1;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.bd-text-child {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;


    overflow: hidden;
    /* The typwriter cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */

    /* Gives that scrolling effect as the typing happens */
    letter-spacing: .075rem;
    /* Adjust as needed */
    animation: typing 1.5s steps(40, end);
    font-family: monospace;
}




/* The typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes pulsate-shadow {
    0% {
        filter: drop-shadow(0 0 7px rgb(125, 125, 125));
    }

    50% {
        filter: drop-shadow(0 0 8px white);
    }

    100% {
        filter: drop-shadow(0 0 7px rgb(125, 125, 125));
    }
}