﻿@keyframes flip {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(-180deg);
    }
}

/*body {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: #F1F2E6;
}
*/
.loader {
    width: 65px;
    margin: auto;
    position: fixed;
    top: 70%;
    left: 60%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 1000;
}

.loader__image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader__coin {
    animation: flip 0.5s ease-in-out infinite alternate-reverse both;
}


