body {
    text-align: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: rgb(255, 255, 255);

}

h1 {
    line-height: 1.2em;
    color: #0000;
    text-shadow:
        0 0 rgb(55, 55, 55),
        0 1.2em #1095c1;
    overflow: hidden;
    transition: .3s;
}

h1:hover {
    text-shadow:
        0 -1.2em #000,
        0 0 rgb(216, 103, 188);

}

.game {
    height: 120px;
    width: 300px;
    border-radius: 15px;
    margin: auto;
    padding: 10px;

}

.game-bg {
    display: none;
    background-color: rgb(255, 255, 226);
    padding: 20px;
    background-color: rgb(255, 225, 240);


}

img {
    border: 2px solid rgb(255, 207, 207);
    padding: 20px;
    width: 300px;
    height: 300px;
    left: auto;
    border-radius: 10%;
    margin: auto;
    display: none;
    box-shadow: 5px 5px 10px rgba(86, 73, 73, 0.458);
    margin-bottom: 10px;
}

.answers {
    margin-top: 10px;
    width: 200px;
    height: 30px;
    margin: auto;
    margin-bottom: 10px;
    margin-top: 10px;
    padding-top: 10px;
    cursor: pointer;
    color: white;
    border-radius: 10px;

}

.opts {
    box-shadow: 10px 10px 10px rgba(64, 63, 63, 0.2);
    background-color: rgb(51, 86, 176);
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.answers:hover {
    background-color: rgb(216, 103, 188);
    box-shadow: 10px 10px 10px rgba(64, 63, 63, 0.817);
}

button {
    cursor: pointer;
    color: white;
    border: none;
    background-color: rgb(51, 86, 176);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(93, 93, 93, 0.2);
}

button:hover {
    background-color: rgb(216, 103, 188)
}

.winner {
    font-size: 40px;
    text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.4);
    color: rgb(216, 103, 188);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-image: url("../img/confetti.gif");
    background-repeat: repeat;
    animation: zoomup 2s ease infinite;
    display: inline-block;
    animation-delay: calc(200ms * var(--i));
}

@keyframes zoomup {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2) translateY(-50px);
        filter: blur(1px);
        opacity: 0;
    }
}