@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* img {
    width: 100%;
    max-width: 100px;
    height: auto;
    display: block;
} */

#baneriai {
    width: 100%;
/*    max-width: 400px; */
    margin: auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    transition: opacity 0.5s ease;
}

#baneriai img {
    height: auto;
    opacity: 1;
    transition: opacity 0.5s ease;
    border: 0px solid #ccc;
    border-radius: 0px;
}

#baneriai.fade-out img {
    opacity: 0;
}

@media (max-width: 480px) {
    #baneriai {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0px;
    }

    #baneriai img {
        width: 100% !important;
        max-width: 100% !important;
       flex: none !important; 
/*        display: block; */
    }
}


body {
    /* font-size: 1.5rem; */
    font-family: 'Courier New', Courier, monospace;
    font-family: 'Roboto', sans-serif;
    
    background-color: #333;
    color: whitesmoke;
    justify-content: center;
    align-items: center;
}

a {
    color: whitesmoke;
}

p {
    /* display: flex; */
    text-align: center;
    justify-content: center;
}


img {
    /* display: block; */
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    /* max-width: 800px; */
}

