html {
    height: 100%;
}

body {
    background: url('../images/background.JPG');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 100%;
}

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100%;
    background-color: rgba(235, 64, 52, 0.1);
    color: black;
    padding: 24px;
}

.main-divider {
    
}
/*
.top-board {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    align-items: center;
}

.middle-board {
    display: flex;
    flex-direction: row;
    flex-grow: 2;
}

.bottom-board {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    padding: 2vh;
}

.game-container {
    display: flex;
    flex-direction: row;
    flex-grow: 2;
}
*/

.game-container-table {
    width: 100%;
    height: 100%;
    font-size: 10vh;
    color: white;
    background: rgba(60, 60, 58, 0.9);
    border-radius: 1vh;
}


.game-container-table > tbody > tr {
    border-bottom: 0.5vh solid white;    
}

.game-container-table > tbody > tr:last-child {
    border-bottom: 0px;    
}

.game-container-table > tbody > tr > td {
    text-align: center;
    vertical-align: middle;
    border-left: 0.5vh solid white;  
    width: 2vh;
    max-width: 2vh;
    min-width: 2vh;
    height: 2vh;
    max-height: 2vh;
    min-height: 2vh;
    cursor: pointer;
}

.game-container-table > tbody > tr > td:first-child {
    border-left: 0;
}
/*
.opponent-profile-container {
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
 }
*/
 .header-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 2vh;
 }

 .header-container-image {
    height: 16vh;    
    background: white;

 }
/*
 .opoonent-profile-picture {
    height: 32vh;
    border-radius: 50%;
    border: 8px solid #EEEEEE;
    background-color: #9E9E9E;
 }
*/
 .mirror-image {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
 }

 .page-blocker {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
 }

 .score-container {
    display: flex;
    justify-content: center;
    width: 100%;
 }

 .score {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 5vh;
    padding: 2vh 10vh;
    color: white;
    background: rgba(60, 60, 58, 0.9);
    border-radius: 2vh;
}


.emoji-container {
    font-size: 13vh;
    text-align: center;
    position: fixed;
    top: 33vh;
    left: 57vh;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}


.emoji-container.visible {
    opacity: 1;
    animation: bounce 1s ease;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    40% {
        transform: translate(-50%, -50%) scale(2);
    }
    60% {
        transform: translate(-50%, -50%) scale(1.5);
    }
}