body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #030101;
    font-family: monospace;
    color: #a3a3a3;
    height: 100vh;
    margin: 0;
    padding: 0;
}

svg {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    max-height: 80vh;
}
#tx {
    text-align: center;
    padding: 15px;
    width: 100%;
}
p {
    color: #3d3d4c;
    margin: 0;
    padding: 0;
    text-align: center;
}
a {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 4px -1px 3px rgba(255, 255, 255, 0.19);
}


#msvg{
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#mp{
    stroke: #a3a3a3;
    stroke-width: 25;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: mp 5s ease-in-out forwards;
}


@keyframes mp {
    0% {
        transform: scale(1);
        stroke: rgb(255, 255, 255);
        stroke-dashoffset: 1000;
    }
    50% {
        transform: scale(1.01);
    }
    100% {
        transform: scale(1);
        stroke: rgb(255, 255, 255);
        stroke-dashoffset: 0;
    
    }
}

.mcp {
    animation: mcp 3s linear infinite backwards;
}


@keyframes mcp {
    0% {
        stroke: #4f5067;
        transform: rotate(0deg);
        transform-origin: center;
    }
    100% {
        stroke: #a3a3a3;
        transform: rotate(360deg);
        transform-origin: center;
    }
}
