/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

/* контейнер */
.lamp-container {
  position: relative;
  width: 400px;      /* ширина лампы */
  margin: 40px auto; /* центрирование */
}

/* лампа */
.lamp-img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;        /* лампа ниже верёвки */
}

/* верёвочка PNG */
.rope-img {
  position: absolute;
  left: 90%;         /* центр над лампой */
  top: -40px;        /* подстрой под свою лампу */
  width: 40px;
  transform: translateX(-50%); /* центрируем */
  cursor: pointer;

  z-index: 9999;     /* ВСЕГДА НАД ЛАМПОЙ */
  transition: filter 0.3s ease;
}

/* подсветка */
.rope-img:hover {
  filter: drop-shadow(0 0 12px rgba(255, 240, 200, 0.9));
}

  




