body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    border-bottom: 1px solid #ccc;
}
.newsphoto {
    text-align: center;
}
.navbar .logo img {
    max-height: 50px;
}

.product-links {
    display: flex;
    gap: 15px;
}

.product-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: #B5B5B5;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-links a:hover {
    background-color: #ddd;
    color: #000;
}

.title {
    text-align: center;
    font-size: 24px;
    color: red;
    margin-top: 20px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.content .item {
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    max-width: 300px;
}

.content .item img {
    max-width: 100%;
    border-radius: 5px;
}
