/* //Id use hashtag # class use . */
html, body{
    height:100%;
    width: 100%;
}

body{
   background: black;
   text-align: center;
}


.game-title-text {
  
    color: skyblue;
  
    text-shadow: -1.5px -1.5px #ff0000;
  /*   text-emphasis-color: 20px, 20px red; */
  
    /* *** FONTS */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  
    font-size: 40px;
  
  }

  .game-score-text {
  
    color: blueviolet;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 50px;
    text-shadow: -2px -2px #ff0000;
    background: skyblue;
    display: inline-block;
    padding: 10px;
    border-radius: 25%;
    margin: 0px;
    margin-bottom: 50px;
  }




#game-board{
    position: relative;
    background-color: black;
     border-radius: 100%;
    height: 500px;
    width: 500px;
    box-shadow:-5px 5px 500px white;
    display: inline-block;
} 



.game-piece-sizes-and-details {
    width:200px;
    height:200px;
    display: inline-block;
    position: relative;
    top:25px;
    border-style: solid;
    border-width:10px;
     box-shadow: 0 0 0 0 #f9f9f9;
     transition: ease-out 0.3s;
}

.game-piece-sizes-and-details:hover{
    color: gray;
    cursor: pointer;
}


#color-green{
   
    background: green;
    border-top-left-radius: 100%;
}
#color-red{
   background: red;
    border-top-right-radius: 100%;
}



#color-blue{
    background: blue;
    border-bottom-left-radius: 100%;
}

#color-yellow{
    background: yellow;
    /* height: 200px;
    width: 200px; */
    border-bottom-right-radius: 100%;
}

#circle-illusion{
    display: inline-block;
    background-color: black;
    width: 200px;
    height: 200px;
    border-radius:100%;
    position: absolute;
    right:150px;
    bottom: 150px;
    box-shadow: 5px,5px,100px,white;
    z-index: 1;
}

#circle-illusion-text {
    
    color: pink;
    font-family: 'Courier New', Courier, monospace;
  
    position: relative;
    top: 45px;
  
    font-size: 25px;
  }

  #circle-illusion-button {
  
    background: black;
    
    color: white;
    font-family: 'Courier New', Courier, monospace;
  
    position: relative;
    top: 65px;
  
    font-size: 25px;

    border-radius: 40%;
    
  }

  nav{
    display: flex;
    width:99%;
    height: 80px;
    background-color: yellowgreen;
    font-family:'Times New Roman', Times, serif;
    outline-color: black;
    outline-style: solid;
    margin-bottom: 50px;
    margin-right: 100px;
    color:white;
    justify-content: space-between;
    /* border-radius: 51%; */
    padding-bottom: 10px;
    
  }

   
  .navbutton:hover .dropdown {
    align-content: space-around;
  }
  
  
  
  .dropdown .navbutton {
    border-radius: 50%;
    width: 200px;
    background-color: black;
    padding-bottom: 20px;
    font-size: 3px;
  }

  #navitems{
    padding-left: 30px;
     
   }

/*    
.theTitle{
  width: 500px;
  font-size: 40px;
  font-weight: 700;
  
 margin-left: 350px;
}

 
   */

   a{border: 2px solid white;
    margin-top:20px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 11px 25px;
    font-family: 'Playfair Display', serif;
    font-size:25px;
    align-items: flex-end;
  display: inline-block;
    position: relative;
    color: white;
    text-decoration: none;
    border-radius: 25%;
  }
  
  

