body{
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}
.main-content{
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh; */
}
.content{
    margin: 0px auto;
}
.cell-main{
    width: 60%;
    margin: 10px auto;
    padding: 20px;
    background-color: antiquewhite;

}
.headline{
    text-align: center;
}
.cell-parent{
    width: 100%;
    display: flex;
    padding: 16px 50px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.cell{
    border: 2px solid black;
    min-height: 80px;
    min-width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.win-border{
    animation: winRow 0.9s linear 0.2s 1 forwards;
    -webkit-animation: winRow 0.9s linear 0.2s 1 forwards;
}
@keyframes winRow {
    to{
        background-color: #ff0040;
        border: 2px solid rgb(171, 7, 7);
    }
}
.popup-parent{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  ;
    -webkit-transform: translate(-50%, -50%)  ;
    -moz-transform: translate(-50%, -50%)  ;
    -ms-transform: translate(-50%, -50%)  ;
    -o-transform: translate(-50%, -50%)  ;
    opacity: 0;
    animation: showPopup 1.1s linear 0.2s 1 forwards ;
    -webkit-animation: showPopup 1.1s linear 0.2s 1 forwards ;
}
@keyframes showPopup{
from{
    opacity: 0.1;
}
to{
    opacity: 1;
    
}
}
#gameEnd{
    padding: 30px;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    display: none;
}
#gameEnd h3{
    color: aliceblue;
    font-size: 32px;
    text-align: center;
}
.popupHide{
    opacity: 0;
    display: none;
    z-index: 0;
  
}

.popup-content{
    padding: 30px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
}
.popup-content h3{
    color: white;
    font-size: 32px;
}
.button-parent{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    gap: 30px;
}
.buttons{
    font-weight: 600;
    font-size: 15px;
    padding: 9px 40px;
    border-radius: 8px;
    background: linear-gradient(to right, #ff0000, #ff0040);
    border: none;
    transition: all 0.7s ease-in-out;
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

  .buttons:hover {
    transform: translate(0, -5px);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  background: linear-gradient(to right, #ff0040, #ff0000);
  }
  .computer-player h2{
    border-bottom: 2px solid white;
    width: 230px;
    padding-bottom:4px;
    margin: 20px auto 10px ;
    color: white;
    text-align: center;
    cursor: pointer;
  }
  .computer-player h4{
    padding:8px;
    color: white;
    font-size: 18px;
    text-align: center;
  }
  .player-data span{
    font-size: 15px;
    font-weight: 600;
    color:black;
    border: 2px solid black;
    padding: 10px;
    width: 46%;
    text-align: center;
    display: none;
  }
  .player-data{
    width: 100%;
    padding: 8px 50px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  
    @media only screen and (max-width: 1000px) {
    .cell-main{
        width: 100%;
    }
    .cell-parent{
        width: 100%;
        padding: 10px 5px;
        gap: 6px;
    }
    .player-data{
        padding: 5px;
    }
    .player-data span{
        font-size: 12px;
    }
  }
