body {
  background-image: url('Polygons.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Courier New", monospace;
}

h1 {
  font-family: "Courier New", monospace;
  color: BLACK;
  text-transform: uppercase;
  text-align: center;
}

h2 {
  font-family: "Courier New", monospace;
  color: BLACK;
  text-transform: uppercase;
  text-align: center;
}

/* Контейнер для всех карточек */
#container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

/* Ссылка, оборачивающая проект */
.project-link {
    text-decoration: none;
}

/* Каждый проектный блок */
#container > a > div {
    background-color: #38454d;
    font-size: 24px;
    border-radius: 20px;
    margin: 20px;
    padding: 30px 40px;
    color: white;
    text-align: center;
    width: 200px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

/* Эффект наведения */
#container > a > div:hover {
    background-color: #2D4B76;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}
