body {
    margin: 0;
    padding: 0;
    font-family: calibri;
    overflow: hidden;
    color: #fff;
    user-select: none;
}

a {
    cursor: pointer;
    transition: 0.1s;
}

a:link,
a:visited {
    color: #fff;
    text-decoration: none;
}

.bt_menu {
    padding: 10px;
    background-color: transparent;
    color: rgba(242, 115, 16, 1);
    font-size: 12pt;
    border: 2px solid hsl(26, 90%, 51%);
    margin: 6px;
    cursor: pointer;
    transform: skew(-21deg);
    transition: 0.1s;
    white-space: nowrap;
}

.bt_menu:hover {
    color: black;
    font-weight: bold;
    /* Removido margin para não mover o objeto */
    background: rgb(255, 235, 0);
    background: radial-gradient(circle, rgba(255, 235, 0, 1) 0%, #ff4400 98%);
    filter: drop-shadow(0 0 1rem rgb(255, 0, 0));
    border-color: rgb(255, 68, 0, 1);
}