/* Добавьте этот стиль в ваш файл стилей (например, styles.css) или в секцию <style> вашего HTML-документа */

body {
    background-color: #f5f5f5;
    color: #333;
    font-family: Arial, sans-serif;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.product {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.product h2 {
    color: #333;
}

.product p {
    color: #666;
}

.product ul {
    list-style-type: none;
    padding: 0;
}

.product button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.product button:hover {
    background-color: #45a049;
}

/* Добавьте этот стиль в ваш файл стилей (например, styles.css) или в секцию <style> вашего HTML-документа */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Стили для всплывающего окна */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  
  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
  }
  
 /* Ваш файл стилей (styles.css) */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  header h1 {
    font-size: 40px;
  }

  table {
    font-size: 30px;
  }
