/*FOR ENTIRE PAGE*/
* {
    margin: 0;
    padding: 0;
}

/*CONFIGURATION GOR WHOLE DOCUMENT*/
body {
    background: #1C2833;
    font-family: "Comic Sans MS", sans-serif;
    height: 60px;
}

/*TOP BAR*/
header {
    background: white;
    padding: 15px;
}

/*TOP BAR HEADER*/
header > h1 {
    display: flex;
    justify-content: center;
    color: black;
    text-align: center;
    font-size: 55px;
}

/*USER WELCOME SCREEN*/
.welcomeScreen {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 100px 100px;
    transition: opacity 0.5s ease;
}

.welcomeScreen > p {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    color: white;
    text-align: center;
    font-size: 25px;
}

.welcomeScreen > .roundsInput {
    display: flex;
    justify-content: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.roundsInput > label > input {
    justify-content: center;
    margin: 20px;
    width: 250px;
    height: 40px;
    text-align: center;
    border: none;
    border-radius: 5px;
    font-family: "Comic Sans MS", sans-serif;
    font-size: 20px;
    -webkit-appearance: none;
}

.roundsNumber > p {
    font-size: 20px;
    color: white;
    text-align: center;
}

.welcomeScreen > button,
.restartGame > button {
    margin: 25px auto;
    width: 200px;
    height: 50px;
    background: #BA4A00;
    border: none;
    color: white;
    font-size: 30px;
    font-family: "Comic Sans MS", sans-serif;
    border-radius: 3px;
}

.welcomeScreen > button:hover,
.restartGame > button:hover {
    cursor: pointer;
    transform: scale(1.1) perspective(1px);
    box-shadow: 0 0 10px #FBFCFC;
}

/*INTRO ON, GAME OFF*/
.fadeIn {
    opacity: 1;
    pointer-events: all;
    transition: opacity 0.5s ease 0.5s;
}

/*INTRO OFF, GAME ON */
.fadeOut {
    opacity: 0;
    pointer-events: none;
}

/*GAME LAYOUT*/
.gameArena {
    transform: translate(0%, -52%);
    transition: opacity 0.5s ease 0.5s;
}

/*GAME DETAILS*/
.gameRules {
    color: white;
    text-align: center;
    font-size: 25px;
}

.scoreBoard {
    margin: 30px auto;
    width: 150px;
    color: white;
    font-size: 35px;
    text-align: center;
    padding: 15px 20px;
    position: relative;
}

.badge {
    background: #BA4A00;
    color: white;
    font-size: 25px;
    border: 2px solid white;
    border-radius: 5px;
    position: relative;
}

/*YOU BADGE*/
#user {
    position: absolute;
    top: 20px;
    left: -65px;
}

/*AI BADGE*/
#computer {
    position: absolute;
    top: 20px;
    right: -45px;
}

.gameResult {
    font-size: 20px;
    color: white;
    text-align: center;
}

/*GAME SYMBOLS*/
.symbols {
    text-align: center;
    margin: 50px;
}

.symbol {
    display: inline-block;
    width: 15%;
    margin: 10px 20px;
    border: 6px solid #BA4A00;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.symbol:hover {
    cursor: pointer;
    background: #808B96;
    transform: scale(1.1) perspective(1px);
}

.green-glow {
    border: 6px solid #2ECC71;
    box-shadow: 0 0 100px #2ECC71;
}

.red-glow {
    border: 6px solid #A93226;
    box-shadow: 0 0 100px #A93226;
}

.white-glow {
    border: 6px solid #FBFCFC;
    box-shadow: 0 0 100px #FBFCFC;
}

/*BOTTOM LABEL*/
#roundsCounter {
    text-align: center;
    color: white;
    font-size: 25px;
    font-weight: bold;
}

.restartGame {
    margin: 25px auto;
    text-align: center;
}

/*ENDGAME*/
.endGame {
    margin: auto auto;
    width: 750px;
    color: white;
    font-size: 35px;
    text-align: center;
    transform: translate(0%, -370%);
}

.endGameResult {
    background: #BA4A00;
    color: white;
    font-size: 15px;
    border: 2px solid white;
    border-radius: 5px;
    /*transition: all 0.4s ease;*/
}

/*YOU BADGE*/
#userEndGameResult {
    position: absolute;
    top: 180px;
    left: 50px;
    font-size: 50px;
}

/*AI BADGE*/
#computerEndGameResult {
    position: absolute;
    top: 180px;
    right: 50px;
    font-size: 50px;
}

.endGame > span {
    font-size: 100px;
}