.icon-container svg  {
    width: 100px;
    height: 100px;
    display: block;
}

.icon-circle {
    fill: black;
    pointer-events: auto;
    z-index: 10;
}

.icon-circle:hover {
    fill:var(--bs-link-color);
}

.icon-overlay {
    position: absolute;
    top: 50%;
    left: 38%;
    transform: translate(-50%, -50%);
    color: rgb(213, 213, 213);
    font-size: calc(2.5rem + 0.3vw);
    pointer-events: none;
}


.font-preview-hero {
    position: relative;
    height: 130px;
    white-space: nowrap;
    overflow: hidden;
    z-index: 2;
    border-right: 2px solid #16CCBC;
    border-left: 2px solid #16CCBC;
}

.icon-container {
    position: absolute;
    right: 0px;
    top: 15px;
    opacity: 0;
    z-index: inherit;
    transition: opacity 0.3s ease;
}

.font-preview-hero:hover .icon-container {
    opacity: 0.8;
}

.font-preview-hero-text {
    padding-left: 10px;
    font-size: calc(4rem + 0.3vw);
    border-top: 2px solid #16CCBC;
    transition: filter 0.3s ease;
}

.icon-container:hover ~ .font-preview-hero-text {
  filter: blur(4px);
  color:#16CCBC;
}



.font-preview-hero-text:hover {
    color:#16CCBC;
}
.font-preview-hero-info {
    margin: -10px 0 0;
    padding-left: 10px;
    opacity: 0;
    color: #6c6c6c;
}

.font-preview-hero:hover .font-preview-hero-info {
    opacity: 1;
    transition: opacity 0.3s ease;
}
