body, input[type=button], button {
    font-weight: bold !important;
}

.croc-margined {
    margin-top: 15px;
}
.croc-margined-bottom {
    margin-bottom: 15px;
}
.croc-opacity {
    opacity: 0.5;
}
.croc-display-none {
    display: none;
}
.croc-height {
    height: 100vh !important;
}
.croc-normal {
    font-weight: normal !important;
}
.croc-right {
    float: right !important;
}
.croc-name {
    text-transform: uppercase;
    font-weight: bold;
}
.croc-title {
    text-align: center;
}
.croc-spoiler-content {
    display: none;
}


.croc-new-game {
    cursor: pointer;
    -webkit-animation: pulsing 2s infinite;
    animation: pulsing 2s infinite;
}
@-webkit-keyframes pulsing {
    0% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9)
    }
    50% {
        -webkit-transform: scale(1.0, 1.0);
        transform: scale(1.0, 1.0);
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9)
    }
}
@keyframes pulsing {
    0% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9)
    }
    50% {
        -webkit-transform: scale(1.0, 1.0);
        transform: scale(1.0, 1.0);
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9)
    }
}