body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #111;
}

/*body:hover footer.options {
    position: absolute;
    bottom: 0;
    padding: 1rem;
    width: 100%;
    background: rgb(255 255 255 / 30%);
    box-sizing:border-box;
    & > input{
        width: 100%;
    }
}*/

.kaleidoscope {
    position: relative;
    width: 100dvw;
    height: 100dvh;
}

.kaleidoscope.rotating {
    animation: 🎡 600s linear infinite;
    transform-origin: center;
}

.kaleidoscope > .tile {
    display: none;
    position: absolute;
    top: 50dvh;
    left: 0;
    z-index: 0;
    overflow: hidden;
    height: max(100dvh, 100dvw);
    width: max(50dvh, 50dvw);
    transform-origin: right top;
}

.kaleidoscope > .tile > .image {
    position: relative;
    top: 0;
    left: 100%;
    height: 100%;
    width: 100%;
    background-color: rgb(255 255 255 / 5%);
    background-image: unset;
    transform-origin: left top;
    transition: background-position 100ms ease-in-out;
}

.kaleidoscope[data-tiles] .tile {
    display: block;
}

@keyframes 🎡 {
    to {
        transform: rotate(360deg);
    }
}

.btn-container {
    width: 100%;
    text-align: center;
}

.button {
    position: relative;
    z-index: 101;
    background-color: #eeeeee;
    border-color: #eeeeee;
    color: #333333;
    border-radius: 0;
    cursor: pointer;
    padding: .6180469716em 1.41575em;
    text-decoration: none;
    font-weight: 600;
    text-shadow: none;
    display: inline-block;
    -webkit-appearance: none;
}

/* POP-UP Modal*/
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.popup-section {
    display: block;
    position: relative;
    min-width: 500px;
    z-index: 100;
    transform: scale(1.2);
    opacity: 0;
    transition: all 6000ms ease-in-out;
}

.popup-image-cont,
.popup-image-cont > img,
.popup-text-cont {
    width: 100%;
    max-width: 750px;
}

.popup-text-cont {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 3.5rem;
}

/* Show POP-UP Modal */
.show-popup {
    opacity: 1;
    transform: scale(1);
    animation: bounceIn 7.2s linear;
}

/* POP-UP Modal transitions */
@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.01, 1.01, 1.01);
        transform: scale3d(1.01, 1.01, 1.01);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

.popup-text {

}

.popup-name {
    width: max-content;
    padding: 0 1rem;
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}


@media screen and (min-width: 768px) {
    .popup-text .popup-name{
        font-size: 1.25rem;
    }

    .popup-text .popup-bold {
        font-size: 1.45rem;
    }
}
