html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter_28pt-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter_28pt-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans SC';
    src: url('fonts/NotoSansSC-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.hero {
    background-image: url('images/wapaper.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

html,
body {
    font-family: 'Inter', 'Noto Sans SC', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.m-title {
    font-size: clamp(32px, 20vw, 128px);
    font-weight: 400;
    font-family: 'Google Sans', 'Noto Sans SC', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
        sans-serif;
    color: white;
    mix-blend-mode: difference;
    padding: 0;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

p,
pre,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px 0px !important;
    font-size: 25px;
}

.m-subtitle {
    font-size: clamp(32px, 20vw, 65px);
    line-height: 1;
    color: #eeeeeeee;
    mix-blend-mode: difference;
    padding: 0;
    margin: 0;
}

.mdui-prose {
    padding: 40px 15px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Shape scaling: default smooth transform, grow from center */
#shape-1 {
    transition: transform 400ms cubic-bezier(.2,.8,.2,1);
    transform-origin: center center;
    will-change: transform;
}

/* On very wide screens start scaling up proportionally (>=1720px)
   scale = 1 + (viewportWidth - 1720px) / 1000px
   - keeps the shape center where script positioned it so right-half remains visible */
@media (min-width: 1720px) {
    #shape-1 {
        transform: scale(calc(1 + (100vw - 1720px) / 1000px));
    }
}