@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.brand-name {
    width: 100%;
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-logo-flex {
    --blue: #3262A8;
    --green: #529E54;
    --purple: #81549B;
    --size: clamp(40px, 8vw, 55px);

    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--blue);
    font-size: clamp(24px, 5vw, 42px);
    gap: 5px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container {
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.logo-v {
    position: relative;
    width: 100%;
    height: 100%;
}

.logo-v::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 17.5%;
    background-color: var(--purple);
}

.side-left {
    position: absolute;
    top: 25%;
    left: 0;
    width: 17.5%;
    height: 82%;
    background-color: var(--blue);
    transform: rotate(-25deg);
    transform-origin: top left;
}

.side-right {
    position: absolute;
    top: 25%;
    right: 0;
    width: 17.5%;
    height: 82%;
    background-color: var(--green);
    transform: rotate(25deg);
    transform-origin: top right;
}


.copyable-v {
    position: absolute;
    font-size: clamp(24px, 5vw, 42px);
    font-family: Arial, sans-serif;
    color: transparent;
    user-select: all;
    z-index: 10;
    line-height: 1;
}

.logo-v {
    position: relative;
    width: 100%;
    height: 100%;
    transform: scale(0.5);
    transform-origin: center;
}

.logo-right {
    margin-left: -15px;
}

.logo-left {
    margin-right: -15px;
}

.brand-tagline {
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    justify-content: center;
    justify-items: center;
    color: #bdbec0;
    font-size: clamp(10px, 2vw, 18px);
    margin-top: -5px;
    letter-spacing: 2px;
}