body {
    margin: 0;
    font-size: 14px;
    color: #000000;
    font-family: monospace;
    background-color: #004466;
}

.backButton {
    padding: 0;
    width: 170px;
    height: 50px;
    font-size: 25px;
    margin-top: 15px;
    margin-left: 15px;
    line-height: 50px;
    text-align: center;
    border-radius: 20px;
    font-weight: bolder;
    color: rgba(0,0,0,0.75);
    background-color: rgba(255,255,255,0.1);
    transition: box-shadow 0.3s ease-in-out, 0.3s ease-in-out;
    text-shadow: 1px 0px 1px rgba(255,255,255,0.25), -1px 0px 1px rgba(255,255,255,0.25), 0px 1px 1px rgba(255,255,255,0.25), 0px -1px 1px rgba(255,255,255,0.25);
    /* box-shadow: 0px 1px 5px inset rgba(255, 255, 255, 0.25), 0px -1px 5px inset rgba(255, 255, 255, 0.25), 1px 0px 5px inset rgba(255, 255, 255, 0.25), -1px 0px 5px inset rgba(255, 255, 255, 0.25); */
    box-shadow: inset 0 0 0.5px 1px hsla(0, 0%, 100%, 0.075),
        0 0 0 1px hsla(0, 0%, 0%, 0.05),
        0 0.3px 0.4px hsla(0, 0%, 0%, 0.02),
        0 0.9px 1.5px hsla(0, 0%, 0%, 0.045),
        0 3.5px 6px hsla(0, 0%, 0%, 0.09);
}

.backButton:hover {
    cursor: pointer;
    background-color: rgba(33,179,239,0.5);
    text-shadow: 1px 0px 2px rgba(255, 255, 255, 0.75),-1px 0px 2px rgba(255, 255, 255, 0.75),0px 1px 2px rgba(255, 255, 255, 0.75),0px -1px 2px rgba(255, 255, 255, 0.75);
    box-shadow: 0px 1px 5px inset rgba(33, 179, 239, 0.75), 0px -1px 5px inset rgba(33, 179, 239, 0.75), 1px 0px 5px inset rgba(33, 179, 239, 0.75), -1px 0px 5px inset rgba(33, 179, 239, 0.75), 0px 0px 2px rgba(0, 0, 0, 0.75);
}

.warn_info {
    color: #000000;
    margin-left: 1%;
}

/* .backButton {
    width: 170px;
    height: 50px;
    line-height: 50px;
    transition: 0.5s;
    font-size: 25px;
    color: #9c9c9c;
    font-weight: 500;
    position: relative;
    text-align: center;
    border-radius: 50px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #272727;
}

.backButton:hover {
    cursor: pointer;
    color: var(#2ffcbb);
    text-shadow: 0 0 15px var(#2ffcbb),
                 0 0 40px var(#2ffcbb);
}

.backButton span{
    position: relative;
    z-index: 1;
}
.backButton::before{
    content: '';
    position: absolute;
    top: var(--y);
    left: var(--x);
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(var(#2ffcbb), transparent, transparent);
    transition: 0.5s,top 0s,left 0s;
    opacity: 0;
}
.backButton:hover::before{
    opacity: 1;
}
.backButton::after{
    content: '';
    position: absolute;
    inset: 2px;
    background: #272727cc;
    border-radius: 48px;
} */