* {
  box-sizing: border-box;
}

.error{
	color:#FF0000;
}

.success{
	color:#228B22;
}


.bodytag {
	font-family:Verdana;
	color:#aaaaaa;
}

.leftdiv {
  float:left;
  width:20%;
  text-align:center;
  word-wrap: break-word;
}

.leftdiv#about{	
	margin-top:7px;
	background-color:#e5e5e5;
}

.leftdiv a {
  background-color:#e5e5e5;
  padding:8px;
  margin-top:7px;
  display:block;
  width:100%;
  color:black;
}

.leftdiv p {
  background-color:#c5c5c5;
  padding:8px;
  margin-top:7px;
  display:block;
  width:100%;
  color:black;
}

.leftdiv p#placeholder {
background-color:#FFFFFF;
}

/*main body class with left and right divs*/
.mainbody {
  float:left;
  width:60%;
  padding:0 20px;
}

/*main body class with no left and right divs */
.mainbodyFull {
	float:left;
	width:100%;
	padding:0 20px;
}

.right {
 /* background-color:#e5e5e5;*/
  float:left;
  width:20%;
  padding:15px;
  margin-top:7px;
  text-align:center;
}

.footer {
	background-color:#e5e5e5;
	text-align:center;
	padding:10px;
	margin-top:7px;
}


/* Add an active class to highlight the current page */
.active {
    background-color: #4CAF50;
    color: white;
}



@media only screen and (max-width:620px) {
  /* For mobile phones: */
  .menu, .mainbody, .leftdiv, .right {
    width:100%;
  }
}

.header {
	background-image: url('../Images/logo.png'); /* The image used */
  	background-color: #e5e5e5; /* Used if the image is unavailable */
  	background-position: center; /* Center the image */	
  	background-repeat: no-repeat; /* Do not repeat the image */
  	background-size: 100% 100%; /* Resize the background image to cover the entire container */
	padding:15px;
	text-align:center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #333;
    padding: 0 12px;
}

.site-nav a,
.nav-toggle {
    color: #f2f2f2;
    background: transparent;
    border: 0;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    cursor: pointer;
}

.site-nav a:hover,
.nav-toggle:hover {
    background: #ddd;
    color: #000;
}

.site-nav a.active {
    background: #4CAF50;
    color: #fff;
}

.nav-toggle {
    display: none;
    margin-left: auto;
}

@media screen and (max-width: 620px) {
    .site-nav {
        flex-wrap: wrap;
    }

    .site-nav a {
        display: none;
        width: 100%;
    }

    .site-nav.is-open a {
        display: block;
    }

    .nav-toggle {
        display: block;
    }
}

.joker-game {
    background-color: #ff0000;
}

.joker-bronze {
    background-color: #cd7f32;
}

.joker-silver {
    background-color: #c0c0c0;
}

.joker-gold {
    background-color: #ffd700;
}

