body, html {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tcf-logo {
    width: 25vw;
    height: auto;
    position: relative;
    z-index: 2;
}

.bracket {
    position: absolute;
    font-size: 5vw; /* Adjusted relative to viewport width */
    color: #888888;
    animation: pulseOut 1.5s infinite ease-in-out;
    opacity: 0;
}


.bracket.left {
    left: -8vw;
}

.bracket.right {
    right: -8vw;
}

@keyframes pulseOut {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}