body, h1, h2, h3, h4, ul { margin: 0;
padding: 0;}
* {
    box-sizing: border-box;
}
body{

    background-color: rgb(200, 200, 200);
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.wrapper_flex {
    display: flex;
    flex-direction: column;
}
header{ 

   display: flex;
   justify-content: center;
   align-items: center;
   color: rgb(105, 105, 105);
   background-color: rgb(188, 188, 188);
}
.header_menu{
    width: 100%;
    justify-content: center;
    display: flex;
    list-style: none;
    padding: 20px;
}        
.menu_item a {
    padding: 5px;
    color: rgb(237, 218, 255);
    text-decoration: none;
    font-size: 20px;
    transition: 0.2s}
.menu_item a:hover{
    background-color: rgb(133, 66, 188, 0.7);
}
.wrapper {
    width: 960px;
    margin: 40px auto 40px auto;
    background-color: rgb(96, 10, 92);
    background-repeat: no-repeat;
    box-shadow: 0 5px 50px 0 rgb(96, 10, 92);
}
.wrapper_content {
    color: rgb(255, 255, 255);
    background-color: rgb(96, 10, 92);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.list_elements {
    width: 70%;
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    list-style: none;
}
.list_elements_item {
    cursor: pointer;
    transition: 0.2s;
}
.list_elements_item:hover {
    transform: scale(1.2);
}
.title_pa {
    padding: 20px;
}
.pa {
    padding: 20px 40px;
    text-indent: 90px;
}
.footer {
    background-color: rgb(188, 188, 188);
    color: rgb(105, 105, 105);
    overflow: auto;
}
.p {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
}
.grid_prod {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    padding: 20px;
    padding: 20px;
}
.grid_prod_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}
.item {
    background-color: rgb(218, 178, 223);
    color: rgb(0, 0, 0);
    padding: 10px;
    box-shadow: 0px 0px 4px 2px rgb(218, 178, 223);
    transition: 0.2s;
    text-align: center;
}
.item:hover { 
    transform: scale(1.03);
    box-shadow: 0px 0px 7px 5px rgb(197, 161, 202);
}
.item_image img{
    height: 150px;
}
.item_cena {
    transition: 0.2s;
    padding: 10px;
    
    text-decoration: none;
}
.item_cena:hover {
    color: rgb(255, 0, 0);
}
.tem_des{
    padding: 20px;
}
.item_title {
    padding: 10px;
    font-size: 20px;
}
.item_des{
    font-size: 15px;
    height: 50px;
}
.item_batom {
    cursor: pointer;
    width: 100px;
    transition: 0.2s;
    background-color: rgb(0, 156, 10);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 2px 2px rgb(150, 123, 154);
}
.item_batom:hover{
    transform: scale(1.1);
    box-shadow: 0px 0px 4px 4px rgb(128, 105, 131);
}
.item_batom a {
    padding: 5px;
    text-decoration: none;
    font-size: 20px;
    color: rgb(0, 0, 0);
    transition: 0.2s
}
.item_batom a:hover{
    color: rgb(101, 255, 98); 
}