body {
    background-color: #222222;
    margin: 0;
}

.konteyner {
    background-color: #222222;
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    padding-bottom: 50px;
    box-sizing: border-box;
}

h1 {
    color: white;
    font-size: 1.5em;
    text-align: center;
    font-weight: 300;
}

h2 {
    color: white;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
}

h3 {
    color: white;
}

h4 {
    color: white;
    font-weight: 300;
}

.materialDivision {
    width: 100%;
    margin-bottom: 30px;
}

.materialDivision img {
    width: 250px;
    border-radius: 8px;
}

.materialDivision p {
    color: white;
    font-size: 16px;
    font-weight: 300;
}

.materialDivision p span {
    color: greenyellow;
    font-weight: 500;
}

.table-container {
    overflow-x: auto;
    padding: 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Adjust this value as needed */
}
th, td {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: left;
    background-color: #222222;
    color: white;
}
th {
    background-color: #f2f2f2;
    color: #222222;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
tr:hover {
    background-color: #f1f1f1;
}


@media screen and (min-width: 800px) {

    .konteyner {
        width: 70%;
        margin-left: 15%;
        margin-right: 15%;
    }

}