@font-face{
    font-family: 'Fira Code';
    src: url(/font/FiraCode-Light.ttf);
}
html{
    margin-top: 100px;
    font-family: 'Fira Code';
}
body{
    
    font-family: 'Fira Code';
    max-width: 1024px;
    align-content: center;
    align-items: center;
    margin: auto;
    border-radius: 30px;
    background-color:#E0E5EC;
    box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px 
       rgba(255,255,255, 0.5);
    /* background-image: url(/Images/background.jpg); */
}
.space {
    clear: both;
}
.left {
    font-weight: lighter;
    float: left;
    color: #ee0290;
    padding-left: 10px;
}
.right {
    font-weight: lighter;
    float: right;
    color:#ee0290;
    padding-right: 10px;
    
}  
.menubar{
    
    text-align: center;
    list-style: inside;
   
}

.menubar li{
    display: inline;
    padding: 20px;
    
}
.menubar li a{
    
    line-height: 200%;
    color: #ff5722;
    padding: 5px;
    text-decoration: none;
    border-radius: 50px;
    background-color: #E0E5EC;
    box-shadow: 10px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px 
       rgba(255,255,255, 0.5);
    font-size: 35px;
    
   
}

.menubar li a:hover{background-color: #E0E5EC;}

.menubar li a:active{
    background-color: #E0E5EC;
    box-shadow: 0 5px #E0E5EC;
    transform: translateY(4px);
}

nav {
    
   /* border-top: 2px solid #ff5722;
    border-bottom: 2px solid #ff5722;*/
}
footer {
    font-weight: lighter;
    font-size: 24px;
    text-align: center;
   /* border-top: 2px solid #ff5722;*/
    padding-top: 10px;
    color: #ee0290;
    padding-bottom: 10px;
}


/* TIC TAC TOE TABLE CSS HERE (BELOW) */
section{
    text-align: center;
}
.gameboard{ 
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, auto);
    grid-gap: 5%;
    width: 200px;
    margin: 50px auto;
   
}
.playerStatus{
    font-weight: lighter;
    border-radius: 40px;
    background-color: #E0E5EC;
    box-shadow: 10px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px 
       rgba(255,255,255, 0.5);
    font-size: 30px;
    color: #ee0290;
}
.header{
    font-weight: lighter;
    border-radius: 50px;
    color: #ee0290;
    background-color: #E0E5EC;
    box-shadow: 10px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px 
       rgba(255,255,255, 0.5);
    font-size: 30px; 
}
.grid {
    width: 75px;
    height: 75px;
    line-height: 100px;
    font-size: 60px;   
    border-radius: 50px;
    background-color: #E0E5EC;
    background: linear-gradient(145deg, #caced4, #f0f5fd);
    box-shadow:  8px 8px 16px #c1c5cb, 
                 -8px -8px 16px #ffffff;
    font-size: 40px;
    

}

.grid:hover{background-color: #E0E5EC;}
.grid:active{
    background-color: #E0E5EC;
    box-shadow: 0 5px #E0E5EC;
    transform: translateY(4px);
}

.reset{
    border-radius: 50px;
    border-width: 0px;
    background: linear-gradient(145deg, #caced4, #f0f5fd);
    box-shadow:  8px 8px 16px #c1c5cb, 
                 -8px -8px 16px #ffffff;
    font-size: 30px; 
    margin-bottom: 35px;
    color: #ff5722;
    
}
  
.reset:hover
    {background-color: #E0E5EC;}

.reset:active{
    background-color: #E0E5EC;
    box-shadow: 0 5px #E0E5EC;
    transform: translateY(4px);
}