
body {
    margin: 0px;
    background-color: rgba(219, 250, 255, 0.281);
    font-size: 18px;
}


.img-ttf {
    max-width: 100%;
    height: auto;
}

.lista-p > p {
    margin: 0;
    padding: 0;
}

.list-decimal-ttf > ol {
    list-style: decimal;
}

.ml-ttf {
    margin-left: 5%;
}

.bold {
    font-weight: bold;
}

.d-block-ttf{
    display: block;
}

.text-left {
    text-align: start !important
}

.font-blue {
    color: rgb(41, 86, 182);
}

.main-structure {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100dvh;
    /* overflow: hidden; */
    /* margin: auto; */
}

.main-ttf {
    display: flex;
    justify-content: center;
    max-width: 1200px;
}


.container-ttf {
    max-width: 1200px;
}


.footer-ttf {
    margin-top: 2rem;
}

.logotypy-ue {
    display: flex;
    justify-content: center;
}

.color-black {
    color: black;
}

.color-red {
    color: red;
}

.menu-center {
    display: flex;
    justify-content: center;
}

.card-zone {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    max-width: 1000px;
}

.top-menu {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    background-color: rgb(229, 241, 247);
}

.nav li:hover {
    animation: menu-animation 0.3s;
    animation-fill-mode: forwards;
}

.sticky-ttf {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
    z-index: 99;
}

.card-ttf {
    box-shadow: 1px 1px 8px rgb(124, 124, 124);
    margin: 1rem;
}

.card-ttf:hover {
    animation: card-body-animation 0.5s;
    animation-fill-mode: forwards;
}

.card-body-ttf {
    background-color: rgb(196, 228, 255);
}

.header-ttf {
    display: inline;
}

.toggle-ttf {
    display:inline
}

.logo-ttf {
    display:inline
}

.navbar-ttf {
    display: none;
}

img {
    max-width: 100%;
    height: auto; 
}

.d-flex-ttf {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.d-flex-column-ttf {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ta-justify {
    text-align: justify;
}

.jc-space-around {
    justify-content: space-around;
}

.jc-center {
    justify-content: center;
}

.jc-space-between {
    justify-content: space-between;
}

.shade1 {
    box-shadow: 1px 1px 2px black;
}

.shade2 {
    box-shadow: 2px 2px 6px black;
}

.aa-stretch {
    align-items: stretch;
}

.d-flex-ttf-column {
    display: flex;
    flex-direction: column;
}

.table, td, tr {
    border: 0px !important; 
}

.table {
    width: fit-content; 
}

.ms-table-ttf {
    margin-left: 0rem;
}

.table>:not(caption)>*>* {
    padding-left: 0px;
}

.table-center {
    margin-left: auto !important;
    margin-right: auto !important;
}






@media screen and (min-width: 900px){
    .top-menu {
        flex-direction: row;
    }
    .header-ttf {
        display: inline;
    }

    .toggle-ttf {
        display:none
    }
    .logo-ttf {
        display:none
    }
    .navbar-ttf {
        display: inline;
    }
    .ms-table-ttf {
        margin-left: 3rem;
    }

}

@media screen and (max-width: 400px){
    .mt-ttf {
        margin-top: 44px
    }
    .mt-ttf2 {
        margin-top: 5rem;
    }
    .width-m-ttf{
        width: 150px;
    }
    .ms-m-ttf {
        margin-left: 0px !important;
    }
}

@keyframes card-body-animation
{
  0% { transform:translateX(0); }
  100% { transform:perspective(300px) translateZ(20px); }
}

@keyframes menu-animation {
    0% { transform:translateX(0); }
  100% { transform:perspective(300px) translateZ(30px); }  
}











