  /* body::before {
    content: "XS";
    color: red;
    background-color: white;
    font-size: 2rem;
    font-weight: bold;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}   */

.box {
    background-color: rgba(173, 216, 230, 0.25);
    border: 1px solid blue;
    min-width: 50px;
    min-height: 100px;
}

@media (min-width: 576px) {
    body::before {
        content: "SM 576px";
    }
}

@media (min-width: 768px) {
    body::before {
        content: "MD 768px";
    }
}

@media (min-width: 992px) {
    body::before {
        content: "LG 992px";
    }
}

@media (min-width: 1200px) {
    body::before {
        content: "XL 1200px";
    }
}

@media (min-width: 1400px) {
    body::before {
        content: "XXL 1400px";
    }
}

/* START OF SITE SPECIFIC CSS */

.glass {
    background: rgba(33, 37, 41, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

}

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

/* Image Perspective and Reflection */

/* .scene {
  perspective: 1000px;
} */

    .image-card {
        transform: rotateY(335deg) rotateX(360deg);
        margin-top: 1rem;
        justify-content: center;
    }

.image-card > img {
    width: 100%;
    height: auto;
    display: block;
}

.reflection {
    height: clamp(140px, 26vw, 260px);
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 99%);
}

.reflection img {
    width: 100%;
    height: auto;
    display: block;
    transform: scaleY(-1) translateY(1px);
    /* opacity: 0.05; */
    filter: blur(1.5px) brightness(0.35);
}

@media (min-width: 576px) {  /* SM */
   .image-card {
        margin-top: 1rem;
    }
}
@media (min-width: 768px) {  /* MD */
    .image-card {
        margin-top: 1rem;
    }
}

@media (min-width: 992px) {  /* LG */
    .image-card {
        margin-top: 5rem;
    }
    .scene {
        perspective: 1200px;
    }
}
