body,
h1,
h2,
h3,
p,
ul,
li {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "TT Travels Trial Regular";
    src: url('./fonts/TT Travels Trial Regular.otf') format('opentype');
}
@font-face {
    font-family: "TT Travels Trial Bold";
    src: url('fonts/TT Travels Trial Bold.otf') format('opentype');
    font-weight: bold;
}

body {
    background-color: #f2f2f2;
    color: #333;
    font-family: "TT Travels Trial Regular", Arial, sans-serif;
    line-height: 25px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
}

.logo img {
    max-width: 200px;
    height: auto;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #2B217D;
}

.about,
.address {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.products-header {
    margin-left: 20px;
}

.products {
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product {
    display: flex;
    flex-direction: column;
    width: calc(30% - 20px);
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.product img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product h3 {
    margin: 10px;
    font-family: "TT Travels Trial Bold", Arial, sans-serif;
}

.product p {
    margin: 0;
}

.product .description {
    padding: 10px;
}

footer {
    background-color: #2B217D;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .product {
        width: 100%;
    }
}