/* Register your custom font family and tell the browser where to find it. */
@font-face {
    font-family: 'Geist';
    src: url('/fonts/Geist-SemiBold.woff2') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('/fonts/Geist-Regular.woff2') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

.frame {
    background: #000000;
}

.frame-holder {
    width: 100vw;
    height: 100vh;
}

.frame-holder video {
    height: 100%;
    width:100%;
    position: fixed;
    top: 0;
    left: 0;
}

.frame-holder .image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text {
    height: 100vh;
    top: 0;
    left: 0;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 4em;
    font-size: 1.5em;
    background: linear-gradient(-45deg, #6a3424, #5e1430, #145f7a, #107b62);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.text.left {
    align-items: start
}

h1 {
    font-size: 2em;
    font-weight: 600;
    font-family: 'Geist';
}

body,
p {
    font-weight: 300;
    font-family: 'Geist';
}

img {
    width: 100%;
}

.subtitle {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #ffffff;
    background: #000;
    text-align: center;
    padding: 1em;
    z-index: 3000;
    font-size: 3em;
    padding-bottom: 2em;
}

#aphorism{
    margin-bottom: -0.25em!important;
}

.hide{
    display:none;
}