body {
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    margin-left: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
}

.hello {
    position: relative;
    overflow: hidden;
    background-color: #000;
    height: 100vh;
}

.hello-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hello-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0%);
    z-index: 1;
}

.hello-a a:link {
	color: #FFFFFF;
	text-decoration: none;
}
.hello-a a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
.hello-a a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.hello-a a:active {
	color: #FFFFFF;
	text-decoration: none;
}

.welcome {
    padding-top: 20vh;
    position: relative;
    z-index: 2;
}

.brand {
    text-align: center;
    color: white;
}

.brand h1 {
    font-size: 12rem;
    margin-top: 0px;
    margin-bottom: 0px;
    font-family: "Cherish", cursive;
    font-weight: 400;
    font-style: normal;
}

.brand .brand-draw {
    margin: 0;
    font-size: 0;
}

.brand .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.brand .handwriting-wrap {
    display: inline-block;
    position: relative;
}

.brand .handwriting-svg {
    width: min(92vw, 1100px);
    height: auto;
    overflow: visible;
    filter: drop-shadow(0 2px 2px rgba(255, 255, 255, 0.18));
}

.brand .handwriting-stroke,
.brand .handwriting-fill {
    font-family: "Cherish", cursive;
    font-size: 220px;
    font-style: normal;
    font-weight: 400;
    dominant-baseline: middle;
    stroke-linejoin: round;
    stroke-linecap: round;
}

.brand .handwriting-stroke {
    fill: none;
    stroke: rgba(0, 0, 0, 0.95);
    stroke-width: 2.8;
    stroke-dasharray: 1900;
    stroke-dashoffset: 1900;
    animation: write-line 5.8s cubic-bezier(0.25, 0.66, 0.2, 1) 0.2s forwards;
}

.brand .handwriting-fill {
    fill: rgba(0, 0, 0, 0.93);
    stroke: none;
    clip-path: url(#handwriting-clip);
}

.brand .handwriting-reveal {
    transform-box: fill-box;
    transform-origin: left center;
    transform: scaleX(0);
    animation: reveal-fill 5.8s cubic-bezier(0.25, 0.66, 0.2, 1) 0.2s forwards;
}

.brand .handwriting-wrap::after {
    content: "";
    position: absolute;
    left: 4%;
    top: 58%;
    width: 1.1em;
    height: 0.14em;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96));
    box-shadow: 0 0 7px rgba(255, 255, 255, 0.25);
    transform-origin: right center;
    animation: pen-trace 5.8s cubic-bezier(0.25, 0.66, 0.2, 1) 0.2s forwards, pen-hide 0.25s linear 6.05s forwards;
}

@keyframes write-line {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes reveal-fill {
    to {
        transform: scaleX(1);
    }
}

@keyframes pen-trace {
    0% {
        transform: translateX(0) rotate(-16deg);
        opacity: 0;
    }
    7% {
        opacity: 1;
    }
    22% {
        transform: translateX(20%) rotate(-10deg);
    }
    45% {
        transform: translateX(43%) rotate(-15deg);
    }
    67% {
        transform: translateX(66%) rotate(-8deg);
    }
    84% {
        transform: translateX(84%) rotate(-13deg);
    }
    100% {
        transform: translateX(95%) rotate(-10deg);
        opacity: 1;
    }
}

@keyframes pen-hide {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand .handwriting-stroke,
    .brand .handwriting-reveal,
    .brand .handwriting-wrap::after {
        animation: none;
    }

    .brand .handwriting-stroke {
        stroke-dashoffset: 0;
    }

    .brand .handwriting-reveal {
        transform: scaleX(1);
    }

    .brand .handwriting-wrap::after {
        display: none;
    }
}

.brand img {
    max-width: 24px;
}

.section1 {
    background-color: gray;
    text-align: center;
    height: 400px;
    position: absolute;
    width: 100%;
}
@media (max-width: 991px) {
    .brand .handwriting-stroke,
    .brand .handwriting-fill {
        font-size: 330px;
    }
}