/* Styiling classes similar to Bootstrap ---------------------------------------------------------- */

/* Tipography-related Styling classes */
.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.text-size-xl {
  font-size: 60px;
}

.text-size-lg {
  font-size: 40px;
}

.text-size-md {
  font-size: 20px;
}

.font-primary {
  font-family: "Bangers", "cursive";
}

.font-secondary {
  font-family: "VT323", monospace;
}

/* Layout-realted Styling classes */

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-1 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.px-2 {
  padding-right: 2rem;
  padding-left: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.d-flex-row-space-evenly {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  align-items: flex-start;
}

.d-flex-col-space-evenly {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  align-items: center;
}

/* END of Bootsrap-like stying classes-------------------------------------------------------------------------------------------*/

/* Global Styles --------------------------------------------------------------------------------------------------------------- */

body {
  background-color: #f0f0f0;
  margin: 0px 0;
}

.img-title {
  width: 480px;
  height: 130px;
  display: block;
  margin: 0 auto;
}

.container {
  width: 860px;
  height: 530px;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  border: 10px solid #fff;
  box-shadow: 2px 4px 16px rgba(0, 0, 0, 0.2);
  background-color: #abb7b7;
  position: relative;
}

table {
  margin: 0;
  padding: 0;
  font-size: 0;
  border: 0;
  border-collapse: collapse;
  flex: 0 0 auto;
}

tr {
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
}

td {
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
}

.small-container {
  background-color: #cccccc;
  padding: 0.5rem;
}

.turns-left {
  background-color: black;
  width: 288px;
}

button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  outline: 0;
}

#btn-blue {
  background: #8f69e8;
  border: 3px solid #fff;
  box-shadow: 0 5px 5px rgba(3, 25, 41, 0.17);
}

#btn-yellow {
  background: #f0cc3e;
  border: 3px solid #fff;
  box-shadow: 0 5px 5px rgba(3, 25, 41, 0.17);
}

#btn-red {
  background: #f03e3e;
  border: 3px solid #fff;
  box-shadow: 0 5px 5px rgba(3, 25, 41, 0.17);
}

#btn-ltblue {
  background: #ccf0cc;
  border: 3px solid #fff;
  box-shadow: 0 5px 5px rgba(3, 25, 41, 0.17);
}

#btn-green {
  background: #85cc3e;
  border: 3px solid #fff;
  box-shadow: 0 5px 5px rgba(3, 25, 41, 0.17);
}

#btn-pink {
  background: #f0a8f0;
  border: 3px solid #fff;
  box-shadow: 0 5px 5px rgba(3, 25, 41, 0.17);
}

.buttons {
  width: 60%;
}

.buttons button {
  border-radius: 6px;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

.buttons button:hover {
  transform: scale(1.1);
}

.final-message {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

#win {
  background-color: green;
}

#lose {
  background: red;
}

h1 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0px #6b6b6b;
  color: #ffd278; /* dark gray */
}

@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }
}
