/*
Theme Name: Wapi
Theme URI: https://gorkovenko.net/wapi/
Author: Andrii Gorkovenko
Author URI: https://gorkovenko.net/
Description: This is a blank basic theme for using embedded API applications written in JavaScript or third-party sites
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wapi
Tags: api, rest api, empty theme
*/

body {
    font-family: Courier, serif;
    font-size: 1em;
    height: 100vh;
    padding: 0;
    margin: 0;
}

.body__wrap {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.body__dot {
    animation: blink-animation 0.5s steps(2, start) infinite;
    -webkit-animation: blink-animation 0.5s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
