@import url('https://fonts.googleapis.com/css2?family=Caudex:wght@700&display=swap');

* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    color: #efefef;
    font-family: Calibri, serif;
    font-size: 1.2rem;
}

.backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("images/biliomi-v4-landing-bg.jpg") no-repeat center center;
    background-size: cover;
    object-fit: cover;
}

.logo {
    background-image: url("images/biliomi-v4-logo-temp.png");
    background-size: cover;
    object-fit: cover;
    width: 300px;
    height: 300px;
}

.bop-slowly {
    animation: BopSlowly 7.5s ease-in-out infinite;
}

.coming-soon-text {
    font-family: 'Caudex', serif;
    font-size: calc(40px + 3vw);
    text-shadow: #000 0 0 10px, #000 0 0 30px;
    padding: 0.1em;
    border-radius: 0.25em;
}

.intro-text {
    display: block;
    min-width: 320px;
    max-width: 30vw;
    text-align: justify;
}

.flex-parent-parent {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.flex-parent {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.flex-child {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    margin-bottom: 1rem;
}

.boxed {
    box-shadow: #000 0 0 10px;
    background-color: rgba(51,51,51,0.95);
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
}

@keyframes BopSlowly {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(14px) rotateZ(1deg);
    }
    50% {
        transform: translateY(0px) rotateZ(0deg);
    }
    75% {
        transform: translateY(14px) rotateZ(-1deg);
    }
}
