@font-face {
    font-family: alice;
    src: url(Alice_in_Wonderland_3.ttf);
}

.reveal .alice {
    font-family: alice;
}




.reveal h2.alice {
    position: absolute;
    top: 230px;
    left: 170px;
    text-align: left;
}

.reveal-viewport {
    background: black;
}

.reveal {
    border: 1px solid black;
    border-radius: 70px;
    background: white
}

.reveal section img.logo {
    box-shadow: none;
    /*border-color: #222;*/
}

.reveal section table {
    font-size: 32px;
}

.reveal section li.nobullet {
    list-style: none;
}

.reveal section img, .reveal section iframe {
    margin: 0;
    max-height: 500px;
    max-width: 500px;
    border: none;
    /*background-color: #222;*/
}


.reveal .credits {
    font-size: 0.6em;
}

.reveal pre {
    width: 95%;
}

.reveal .bgImages img {
    width: 22%;
    margin: 5px;
    height: 120px;
}

.reveal div.overlay {
    position: absolute;
    top: 150px;
    left: 100px;
    width: 750px;
    height: 430px;
    background-color: rgba(34, 34, 34, 0.90);
    text-align: left;
    padding: 20px;

}

.reveal div.overlay a, .reveal div.overlay a:hover, .reveal div.overlay a:visited {
    color: white;
    font-size: 38px;
}

.reveal p.warn {
    color: darkorange;
}

.reveal .red {
    color: red;
}

.reveal .green {
    color: green;
}

.no-bullet {
    list-style-type: none;
}

ul.no-bullet li {
    list-style-type: none;
}


.reveal .ml30 {
    margin-left: 30px;
}

.reveal .quote {
    font-size: 40%;

}

.reveal .flex {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.reveal .flex.column {
    flex-direction: column;
}


.reveal .flex.aifs {
    align-items: flex-start;
}

.reveal .flex li {
    margin: 15px;
}

.reveal .slides section .fragment.visible.hideme:not(.current-fragment) {
    display: none;
    height:0;
    line-height: 0;
    font-size: 0;
}

.reveal .logos li {

    padding: 15px;
    text-align: center;

}

.reveal .logos img { /*general rule*/

    max-height: 95px;
    background: white;
    box-shadow: 0 0 0

}

.reveal .tac {
    text-align: center;
    display: block;
}

.reveal ul.smaller li {
    font-size: 36px;
}

.reveal .italics {
    font-style: italic;
}

.reveal .flex-container {
    display: flex;
    flex-wrap: nowrap;
    height: 60%;
    justify-content: center;
    flex-direction: column;
}

.reveal pre code {
    max-height: 600px;
}
.reveal .hljs table{
    font-size: 20px;
}

.header {

}


.done {
    text-decoration: line-through;
}

.current {
    font-size: 1.5em;
    font-weight: bolder;
}

.next {
    font-style: italic;
}

.relative {
    position: relative;
}



.tigerCost {
    color: gold;
}

.sizeAstronaut {
    color: white;
}

.blink {
    animation: blinker 1s infinite alternate ease-in-out;
}

.bg-white {
    background-color: white;
}

.img-bottom {
    position: absolute;
    bottom: 0;

}

@keyframes blinker {
    from {
        opacity: 1.0;
    }
    to {
        opacity: 0.0;
    }
}


.bold {
    font-weight: bolder;
}

.bigger {
    font-size: 2.2em;
}

.abs-images {
    position: absolute;
    bottom: -170px;
    width: 30%;
    height: 160px;
}


.credits li {
    display: flex;
    align-items: center

}

.credits li p {
    margin: 5px 30px;
    min-width: 80px
}

.credits li img {
    max-height: 30px;
}


.card-header {
    position: fixed;
    top: 25px;
    left: 25px;
}

.card-footer {
    position: fixed;
    bottom: 25px;
    right: 25px;
}


.spades::after {
    content: "\2660"
}

.hearts {
    color: red;
}

.hearts::after {
    content: "\2665";
}

.diamonds {

    color: red
}

.diamonds::after {
    content: "\2666";
}

.clubs::after {
    content: "\2663"
}


.reveal  ul.gridLike{
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    margin: 32px 0;
}

.reveal  ul.gridLike li {
    margin: 0 10px;
    flex-basis: calc(50% - 20px);  /* width minus margins */
    width: 300px;
    height: 300px;
    text-align: center;
}
.reveal  ul.gridLike span  {
    display: block;
}

.reveal  ul.gridLike img {
    width: auto;
    height: 200px;
}



.appear{
    animation-name: show-and-hide;
    animation-duration: 10s;
    animation-iteration-count: 3;
    opacity: 0;
}

@keyframes show-and-hide {
    0% {opacity:  0;}
    50% {opacity:  0.4;}
    100% {opacity:  0;}
}
