@font-face {
  font-family: 'Liddell';
  src: url('https://solen.neocities.org/Liddell-Regular.woff2') format('woff2'),
       url('https://solen.neocities.org/Liddell-Regular.ttf') format('truetype');
         <link rel="stylesheet" href="oliver.css">
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  padding: 80px;
  background-color: #0d0d0d;
  font-family: 'Liddell', serif;
  color: white;
  text-align: center;
}

.container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px 80px;
  justify-items: center;
  align-items: center;
  position: relative;
}

.item {
  position: relative;
  text-align: center;
  width: 220px;
  filter: drop-shadow(0 0 8px #444);
  transition: all 0.3s ease;
  user-select: none;
}

.item:hover {
  filter: drop-shadow(0 0 12px #fff);
  transform: scale(1.05);
}

.item img {
  width: 100%;
  height: auto;
  pointer-events: none;
}

.caption {
  margin-top: 16px;
  font-size: 18px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  text-transform: lowercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.item:hover .caption {
  opacity: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

.clickable img {
  pointer-events: auto;
  cursor: pointer;
}

.gloss { 
  transform: translate(-35px, -25px) rotate(-5deg); 
  width: 10%;
}
.phone { 
  transform: translate(45px, 15px) rotate(6deg); 
}
.choker { 
  transform: translate(-55px, 60px) rotate(3deg); 
  width: 264px;
}
.bag { 
  transform: translate(55px, -35px) rotate(-5deg); 
  width: 308px;
}

@media (max-width: 700px) {
  .container {
    grid-template-columns: 1fr;
  }
  .item {
    transform: none;
    width: 100%;
  }
  .gloss, .phone, .choker, .bag {
    width: 100%;
  }
}
