body {
  background: #000000;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 5px;
}
.box {
  background: #1c1c1c;
  width: 80vw;
  height: calc(80vw * 0.75);
  align-items: center;
  padding: 1px;
  justify-content: space-inbetween;
  display: flex;
  flex-direction: column;
  border-radius: 40px;
  box-shadow: 0 0 15px 10px #ffffff;
  transition: 
    all 0.2s ease-out;
}
.box:hover {
  box-shadow: 0 0 30px 20px #ffffff;
  transform: translateY(-3px);
  opacity: 0.9;
  cursor: pointer;
  transition: 
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}
.box img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 40px;
}
