body{
    margin: 0;
    background-color: rgb(4, 35, 36);
}

.statusRow{
    position: fixed;
    display: flex;
    bottom: 0;
    width: 100vw;
    height: 2rem;
    padding-left: 1rem;
    background-color: rgb(71, 125, 197);
}

.statusP{
    margin-top: auto;
    margin-bottom: auto;
    color: rgb(255, 255, 255);
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
}

code{
    color: rgb(255, 255, 255);
    font-family: 'Courier New', Courier, monospace;
    font-weight: 600;
}

.c{
    margin: 2rem;
}

.DunFangHun{
    position: fixed;
    overflow: hidden;
    font-size: 4rem;
    font-weight: 800;
    color: rgb(255, 255, 255);
    -webkit-text-stroke: 10px black;
    paint-order: stroke fill;
    white-space: nowrap;
    left: 100vw;
    animation: 7s dunfanghun linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@font-face {
    font-family: taiwan;
    src: url(TaiwanPearl-SemiBold.ttf);
}

@keyframes dunfanghun{
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(-200%);
    }
}

.dunfanghundiv{
    position: fixed;
}
