/* === STYLE FILE === */
/* Style file for 008 */

* {box-sizing: border-box;}

/*=== STANDARD ELEMENTS===*/
html {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

body {
  background-color: black;
  margin: 16px;
}

h1 {text-align: center;}
  
h2 {font-size: 14px;
    text-align: center;
    padding: 5px;}

/*=== TABLE ===*/
table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

th, td {padding: 0px;}

.tabcol40 {width: 35%;}
.tabcol10 {width: 15%;}

/*=== FONTS ===*/
.serif {font-family: "Times New Roman", Times, serif;}
.sans {font-family: Arial, Helvetica, sans-serif;}
.mono {font-family: "Lucida Console", "Courier New", monospace;}
/*=== TEXT ALIGNMENT ===*/
.center {text-align: center;}
.left {text-align: left;}
.right {text-align: right;}

#gameCard {
  width: 360px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  margin-bottom: 16px;
  border: 2px solid grey;
  border-radius: 8px;
  background-color: darkred;
}

#btn_one {
  height: 64px;
  width: 240px;
  background-color: red;
  color: white;
  border-radius: 16px;
  box-shadow: 4 16 pink;
  cursor: pointer;
  margin-right: auto;
  margin-left: auto;
  margin-top: 16px;
  margin-bottom: 16px;
		border: 2px solid pink;
}

#btn_one:disabled {
    background-color: lightgrey;
    color: black;
  }

img {
    width:  48px;
    height: 48px;
    margin: 4px;
  }
  
.hidden {
  display: none; /* Hide the default checkbox */
}

label {
    display: inline-block;
    width: 60px;
    height: auto;
    background-color: lightblue; /* Default background */
    border-radius: 8px;
    cursor: pointer;
    justify-items: center;
    box-shadow: 0px 6px cornflowerblue;
  }

fieldset {
  margin: 32px;
  padding: 16px;
  justify-items: center;
  color: white;
}

 input[type="checkbox"]:checked + label{
    background-color: lightsalmon;
    box-shadow: 0px 3px gray;
   transform: translateY(4px);
  }

  input[type="checkbox"]:disabled +label {
    background-color: darkgrey;
    box-shadow: 0px 3px black;
  }

.img_small {
   height:		32px;
   width:			32px;
  translate: 0px -2px;
 }
  
  .bar {
    background-color: pink;
    border: solid blue 1px;
    border-radius: 8px;
    height: 40px;
    width: 320px;
    color: darkblue;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0px 6px darkblue;
    display: flex;
    float: left;
    margin-left: 8px;
    margin-right: auto;
    margin-top: 2px;
    margin-bottom: 8px;
  }


    .bar1 {
    background-color: gold;
    border: solid blue 1px;
    border-radius: 8px;
    height: 40px;
    width: 320px;
    color: darkblue;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0px 6px darkblue;
    display: flex;
    float: left;
    margin-left: 8px;
    margin-right: auto;
    margin-top: 2px;
    margin-bottom: 8px;
  }
  button {
    padding: 0;
    margin:0;
  }
  
  button:disabled {
    background-color: lightgray;
    box-shadow: 0px 6px darkgray;
  }
  
  .block {display: block;}
  
.bar_inner {
    background-color: blue;
    border: solid blue 1px;
    border-radius: 4px;
    height: 30px;
    width: 30px;
    color: white;
  		font-size: 16px;
    display: block;
    text-align: center;
    padding: 2px 4px 0px 4px;
    margin-top: 4px;
    float: right;
  }
  
  .bar_text {
    margin-top: 6px;
    width:200px;
    text-align: left;
    font-size: 16px;
  }
  
  .bar::after {
    display: block;
  }

.splash {
    margin-left: auto;
    margin-right: auto;
    width: 320px;
    height: 400px;
    justify-content: center;
    margin-top: 32px;
    background-color: white;
    border: 2px gray solid;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 8px;
}

.img_medium {
    width: 128px;
    height: auto;
}
 
  /* === END OF FILE === */