html {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    padding: 2%;
}

#placeP {
    transition: 500ms;
    font-size: larger;
    margin: 0px;
}

.spy {
    animation: 1000ms infinite alternate rotate-and-scale;
}

@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(365deg);
    }
}

@keyframes rotate-and-scale {
    from {
        transform: rotateY(0deg) scale(0.1);
    }

    to {
        transform: rotateY(365deg) scale(2);
    }
}

.floatingImg {
    width: 50px;
    position: absolute;
    opacity: 0%;
    /* @keyframes duration | easing-function | delay ... name */
    animation: 10s ease-in-out 10s infinite alternate dim;
}

@keyframes dim {
    from {
        opacity: 0%;
    }

    20% {
        opacity: 0%;
    }

    to {
        opacity: 40%;
    }
}

.floatingText {
    font-size: 10px;
    /* display: inline-block; */
    top: 100px;
    /* height: 5px; */
    background-color: transparent;
    background-repeat: no-repeat;
    color: transparent;
    border: none;
    cursor: pointer;
    /* overflow: hidden; */
    outline: none;
    position: absolute;
    animation: 10s infinite 10s alternate ease-in-out fontDim;
}

@keyframes fontDim {
    from {
        color: transparent;
    }

    20% {
        color: transparent;
    }

    to {
        color: #dbd8d8;
    }
}

.imgParent {
    position: relative;
    top: 0px;
    left: auto;
    right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.spyImg {
    position: relative;
    animation: 10s infinite 2s alternate ease-in-out spyEyes;
    width: 400px;
    left: 2px;
}

.spyImgEyes {
    position: absolute;
    width: 400px;
    top: 0px;
}

@keyframes spyEyes {
    from {
        opacity: 100%;
    }

    to {
        opacity: 0%;
    }
}

#votePlayers-select-section {
    display: grid;
    align-items: center;
    justify-content: center;
}

.revealCard {
    /* align-self: center; */
}

/* .votePlayers-select {} */

#messageDiv {
    /* max-height: 100px; */
    /* min-width: 390px; */
}