@font-face {
    font-family: "Aenoik";
    font-weight: 400;
    src: url('./fonts/New\ Aeonik\ Trials/AeonikTRIAL-Regular.otf') format('otf');
}

@font-face {
    font-family: "Aenoik";
    font-weight: 300;
    src: url('./fonts/New\ Aeonik\ Trials/AeonikTRIAL-Light.otf') format('otf');
}

@font-face {
    font-family: "Aenoik";
    font-weight: 500;
    src: url('./fonts/New\ Aeonik\ Trials/AeonikTRIAL-Bold.otf') format('otf');
}

body {
    font-family: 'Aeonik', sans-serif;
    color: #131314;
    transition: all 0.2s ease-in-out;
}

body.black {
    background-color: #000;
}

.splide__track {
    overflow: visible;
}

.splide__slide {
    /* height: calc(100vh - 4rem); */
    width: calc(100vw - 4rem);
    padding: 2rem;
    border-radius: 20px;
    background-color: #fff;
}

.splide__slide.final {
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
}

.splide__arrows {
    display: none;
}

.text-gradient {
    width: fit-content;
    background-image: linear-gradient(90deg, #DD2A7B 0%, #F58529 100%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.icon-container {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}

.icon-container.play {
    opacity: 1;
    z-index: 10;
    /* animation-name: fadeIn;
    animation-duration: 0.2s;
    animation-direction: normal;
    animation-timing-function: ease-in-out; */
}

.icon-container.play .icon {
    animation-name: zoomIn;
    animation-duration: 1s;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.btn-black {
    background-color: #131314;
    color: #fff;
    padding: 10px 18px;
    border: none;
    border-radius: 100px;
    transition: all 0.5s ease-in-out;
}

.btn-black:hover,
.btn-black:focus {
    background-color: #fff;
    color: #131314;
}

.btn-option {
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in-out;
}

.btn-option:hover,
.btn-option:focus {
    border-color: #131314;
}

/* Animations */
@keyframes fadeIn {
    0% {
        z-index: -1;
        opacity: 0;
    }

    100% {
        z-index: 10;
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.25);
    }

    75% {
        opacity: 1;
        transform: scale(1.25);

    }

    100% {
        transform: scale(1);
    }
}