body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

h1 {
    text-align: center;
    color: #333;
}

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

.watch {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.watch img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    max-height: 200px;
    min-width: 150px;

}

.watch h2 {
    margin: 10px 0;
    color: #555;
}

.watch p {
    margin: 5px 0;
    color: #777;
}