@font-face {
    font-family: 'digital-7';
    src: URL('../css/digital-7.ttf') format('ttf');
}

body {
    background-image: url("../images/zombiebackground.jpg");
    font-family: 'Londrina Solid', cursive;
    background-repeat: no-repeat;
    background-size: 100%;
    color: rgb(147, 13, 13);
}

.container {
    background-image: url("../images/metal.png");
    background-repeat: no-repeat;
    background-size: 100%;
    height: 770px;
    width: 550px;
}

.indicator {
    background: rgb(0, 0, 0);
    font-family: 'Orbitron', sans-serif;
    color: rgb(43, 255, 0);
    font-weight: bolder;
    font-size: 25px;
}

.hidden {
    display: none;
}

.image {
    overflow: hidden;
    transition-duration: 2.0s;
    transition-property: transform;
    width: 190px;
    height: 175px;
}
.image:hover {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    cursor: pointer;
}

