body {
    background-image: url(../images/site-bg.jpg);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin: 0;
    min-width: 480px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 100vh;
    padding: 30px 0;
}

.main_wrapper {
    margin: 0 auto;
    width: 420px;
    background: #fff;
    border-radius: 15px;
}

img {
    max-width: 100%;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #333;
}

h1 {
    text-align: center;
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    margin: 10px 0 20px;
}

.main_logo {
    width: 250px;
    display: block;
    padding: 15px 0 0;
    margin: 0 auto;
}

.products_block {
    padding: 0 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.products_block .product_item {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 3px solid #ffe800;
    border-radius: 15px;
    padding: 10px;
}

.products_block .product_item .product_item_img {
    max-width: 155px;
}

.products_block .product_item .product_item_img img {
    display: block;
    border-radius: 15px;
}

.products_block .product_item .product_item_title {
    font-family: 'Arial', sans-serif;
    font-size: 23px;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 600;
}

@media screen and (max-width: 480px) {
    .main_wrapper {
        margin: 0 30px;
    }
}