@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: Michelin;
    src: url(../fonts/Michelin-Bold-DtbnKk_R.woff2) format("woff2");
    font-weight: 400
}

@font-face {
    font-family: Michelin;
    src: url(../fonts/Michelin-Bold-DtbnKk_R.woff2) format("woff2");
    font-weight: 700
}

@font-face {
    font-family: Michelin;
    src: url(../fonts/Michelin-SemiBold-C84lej-Y.woff2) format("woff2");
    font-weight: 600
}


html, body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

:root {
    --michelin-blue: #27509b;
    --michelin-dark-blue: #0032A3;
    --michelin-dark-blue-2: #27509B;
    --michelin-yellow: #FCE500;

    background-color: var(--michelin-blue);
    color: #fff;
    font-family: Noto Sans, sans-serif;
    -webkit-font-smoothing: antialiased;

    font-weight: 200;
}
.ylw, a {
    color: var(--michelin-yellow);
}
a {
    font-weight: 700;
}
dl {
    padding-left: 1rem;
}
dd {
    font-size: .85em;
    font-style: italic;
    padding: 0;
    margin: .33em 0 0 1em;
}
dt {
    margin-top: 1rem;
}

.signature {
    margin-top: 5rem;
    text-align: right;
    font-weight: bold;
    font-family: Michelin;
}

strong {
    font-weight: 600;
}
.content {
    position: relative;
    padding: 2rem;
    font-size: 18px;
    margin: 0 auto 3rem auto;

    width: 100%;
    max-width: 768px;
    z-index: 1000;
}
p {
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

h1 {
    font-family: Michelin;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 3rem;
    text-shadow: rgba(255, 255, 255, .1) .66rem .5rem;
    text-transform: uppercase;
    padding-bottom: 2rem;
    position: relative;
    &::after {
        content: "";
        position: absolute;
        bottom: 0; left: 0;
        width: 100%;
        height: 1px;
        background-image: linear-gradient(to right, #ffffff6a 50%, transparent 50%);
        background-size: 16px;
        background-repeat: repeat-x;
    }
}

h4 {
    color: var(--michelin-yellow);
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 4rem;
    font-family: Michelin;
    font-style: italic;
}


#background {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    /* background: radial-gradient(red, blue); */
    z-index: -1;
    opacity: .66;

    img.tl, img.br, img.hmdl {
        height: 30vh;
        width: auto;
        position: absolute;

    }
    img.tl {
        top: 0;
        left: 0;
    }
    img.br {
        bottom: 0;
        right: 0;
    }
    img.hmdl {
        height: 20vh;
        width: 100vw;
        bottom: 10vh;
    }

    .circleDot {
        position: absolute;
        left: 18rem;
        top: 10rem;
        transform: translate(-50%, -50%);
        border: 1px solid white;
        border-radius: 100%;
        aspect-ratio: 1;
        transition: height 1s ease-in-out;

        opacity: 0.22;

        &::before,
        &::after {
            content: "";
            position: absolute;
            background-color: #fff;
            top: 50%;
            left: 0;
            height: 17px;
            width: 17px;
            transform: translate(-50%, -50%);
            border-radius: 100%;
        }
        &::after {
            left: initial;
            right: 0;
            height: 13px;
            width: 13px;
            transform: translate(50%, -50%);
        }
        &.circle1 {
            height: 50vh;
            animation: 15s linear 0s infinite reverse none running rotateCircle;
        }
        &.circle2 {
            height: 70vh;
            animation: 12s linear 0s infinite normal none running rotateCircle;
        }
        &.linedash {
            border-color: transparent;
            background: none;
            height: 30vh;
            animation: 8s linear 0s infinite normal none running rotateCircle;
            &::before,
            &::after {
                content: "";
                position: absolute;
                background-color: transparent;
                top: 50%;
                left: 30vh;
                height: 1px;
                width: 200vw;
                transform: translate(0, -50%);
                border-radius: 100%;
                background-image: linear-gradient(to right, #ffffff 50%, transparent 50%);
                background-size: 16px;
                background-repeat: repeat-x;
            }
            &::after {
                left: initial;
                right: 30vh;
            }
        }
    }

}


@keyframes rotateCircle {
    to {
        transform: translate(-50%,-50%) rotate(1turn)
    }
}
