body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #f4f4f4;
    overflow: hidden;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
}

.container {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height:100vh;
}

.image {
    width: 40%;
    display: block;
    margin:0 auto;
    position: relative;
    top:50%;
    transform:translateY(-50%);
}
.container p {
    position:fixed;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    font-size: 1.4rem;
    color:#6d6d6d;
}

svg {
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:100%;
}
text {
    fill: #6d6d6d;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-size:22px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    animation: rotate 5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
    transform-origin: 250px 250px;
}

svg {
    max-width: 80vmin;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
img.logo {
    display: block;
    margin:0 auto 30px;
}
.textcircle {
    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
    transform-origin: 250px 250px;
}
