@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

* {
    margin: 0;
    padding: .5%;
    font-family: 'Bebas Neue', cursive;
}

body {
    background-color: #112B3C;
}

/* Heading  */
.heading-div {
    text-align: center;
}

.heading-h1 {
    color: #EFEFEF;
    font-size: 3.5rem;
}

.heading-image {
    width: 5%;
}

/* Body  */

.choices-div {
    display: flex;
    justify-content: center;

}

.choice {
    padding: 2%;
    margin: 0 2%;
    background-color: #F66B0E;
    border-radius: 100%;
    width: 5%;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid;
    border-color: #F66B0E;
    cursor: pointer;
}

.choice:hover {
    border-style: solid;
    border-color: #EFEFEF;

}


.rock {
    background-image: url(images/fist.png);

}

.paper {
    background-image: url(images/palm.png);
}

.scissor {
    background-image: url(images/scissors.png);
}

/* Battle  */

.battle-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 3%;
    padding-bottom: 0;

}

.battle-image {
    width: 10%;
    margin: 2%;

}

.vs-heading {
    font-size: 5rem;
    color: #EFEFEF;
}

/* Footer  */
footer {
    text-align: center;
}

.footer-h2 {
    font-size: 4rem;
    color: #EFEFEF;
}