/* Reset some default browser styles */

img{
    border-radius: 10px;
}

body,
h1,
h2,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post {
    margin-bottom: 40px;
}

.title {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.content {
    width: 100%;
    margin-bottom: 20px;
    text-align: justify;
}

.code-example {
    background-color: #f5f5f5;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow-x: auto;
}

.code-example pre {
    margin: 0;
}

.blockquote {
    border-left: 2px solid #333;
    padding-left: 10px;
    margin-bottom: 20px;
    font-style: italic;
}

footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
}
.content-image{
    height: 170px;
    width: 200px;
}
.content-info{
    display: flex;
}
.content-info>img,p{
    padding: 5px 5px 5px 5px;
}
.district-img{
    width: 100%;
}
.product .price {
    margin: 10px 10px 10px 10px;
}

.price button {
    background-color: #ddd;
    color: black;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: background-color 0.3s;
    margin-left: 10px;
}

.price button:hover {
    background-color: #9e9999;
}

