body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url(bg.jpg);
    background-size: cover;
    background-color: #111;
    width: 100%;
    justify-content: center;
}

.w3-center{text-align:center!important}

.w3-content,.w3-auto{margin-left:auto;margin-right:auto}.w3-content{max-width:980px}.w3-auto{max-width:1140px}

.learntocodecontent {
    padding-left:90px;
    padding-right:90px;
  }

.learntocodeh1 {
    margin-top: 2px;
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 2px #000;
  }

.learntocodeh3 {
    color:#FFF0F5;
    font-weight:700;
    margin-top:30px!important;
    font-size:25px;
    text-shadow: 2px 2px 2px #000;
  }

/*For The Table*/
table {
    border-collapse: collapse;
    position: absolute;
    left: 50%;
    margin-left: -155px;
    top: 300px;
    display: flex;
    flex-wrap: wrap;
}

td{
    border: 2px solid #fd2d53;
    height: 100px;
    width: 100px;
    text-align: center;
    vertical-align: middle;
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 70px;
    cursor: pointer;
    background: #FFFFF0;
    transition: all 0.3s ease;
}

td:hover {
    background: #eee;
}

td.x {
    color: #4CAF50;
}

td.o {
    color: #f44336;
}

.endgame{
    display: none;
    width: 200px;
    top: 120px;
    background-color: rgba(205, 133, 63, 0.8);
    position: absolute;
    left: 50%;
    margin-left: -100px;
    margin-top: 584px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 2px #000;
    animation: endgame-show 0.5s ease-in-out;
}

.endgame button {
    background: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.endgame button:hover {
    background: #3e8e41;
}

.endgame .text {
    font-size: 20px;
margin-bottom: 10px;
font-weight: bold;
color: #fff;
text-shadow: 2px 2px 2px #000;
}

.roll-numbers {
display: inline-block;
color: #fd2d53;
text-shadow: 1px 1px 1px #000;
transition: all 0.3s ease;
}

.roll-numbers:hover {
color: #f44336;
transform: rotate(5deg);
}

@keyframes endgame-show {
0% {
opacity: 0;
transform: scale(0);
}
100% {
opacity: 1;
transform: scale(1);
}
}
}
