/* stylizacja przycisku powrót (union.html; yteye.html) */

.backbutton
{
    height: fit-content;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    text-decoration: none;
    background-color: #0a2b42;
    opacity: 0.7;
}


.backbutton_txt
{
    /* kolor tekstu i brak podkreślenia stylizuje
    klasa=link wpisna w linka (z navbar.css) */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    transition: all 0.5s;
    transform: scale(1);
}


.backbutton_txt:hover
    /* stylizacja tekstu w backbuttonie (po najechaniu kursorem) */
{
    color: dodgerblue;
    text-decoration: transparent;
    -webkit-text-stroke-color: blue;
    -webkit-text-stroke-width: 1px;
    transition: all 0.5s;
    transform: scale(1.2);
}
