@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,700,900");

/* Main */

body {
    background-color: #f9f9f9;
    color: #404040;
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    color: #656565;
    padding: 1rem 0;
    max-width: 800px;
}

.container {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    width: auto;
}

@media(min-width: 769px){
    .container{
        width: 100vw;
    }
}

footer {
    color: #656565;
    padding: 1rem 0;
    margin-top: 2rem;
}

/* Pisownia */

h1, h2, h3, h4, h5{
    line-height: 1.2;
    color: #5a5a5a;
}

a{
    text-decoration: none;
    color: #585858;
    border-bottom: dotted 1px;
}

strong, b {
    font-weight: 900;
    color: #5a5a5a;
}

hr{
    border: 0;
    border-top: 1px dotted #ccc;
    margin: 20px 0;
}

/* Elementy */


button {
    padding: 10px;
    background-color: #f9f9f9;
    color: #656565;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

button:hover{
    background-color: #f9f9f9;
}

.button {
    padding: 10px;
    background-color: #f9f9f9;
    color: #656565;
    border-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: inline-block;
    margin: 5px 10px 5px 0;
}


.button:hover{
    background-color: #f9f9f9;
}

.button-red{
    padding: 10px;
    background-color: rgb(104, 46, 46);
    color: white;
    border-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.button-red:hover{
    background-color:rgb(148, 66, 66);
}

.button-green{
    padding: 10px;
    background-color: rgb(76, 104, 69);
    color: white;
    border-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.button-green:hover{
    background-color:rgb(106, 146, 96);
}

/* Kontenery */

.row{
    display: flex;
    align-items: flex-start;
}

#article-full{
    img{
        padding: 10px;
    }
}

.artykul-img-wewnatrz{
    float:right;
    max-width:300px;
    margin: 1rem;
    margin-right: 0;
}


table {
    border-collapse: collapse;
    width: 100%;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
    td a button {
        background-color: white;
    }
    td a button:hover {
        background-color: #f9f9f9;
    }
}
/* Telefony */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        margin: 0 auto;
    }
    .row a {
        margin-left: 0;
        align-self: center;
    }
    .row h2{
        text-align: left;
    }
    .artykul-img-wewnatrz{
        align-self:center;
    }

    #article-full img {
        float: none !important;
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        margin-bottom: 10px;
        max-width: 90%;
        height: auto;
        text-align: center;
    }
}
