.bg-orange { background-color:#FE8C10 ; }
.bg-violet { background-color:#EF9EFD ; }
.bg-maroon { background-color:#6E1A20 ; }
body
{
  -font-family:QuickSand;
}
.text-dark a
{
  color:black;
  text-decoration:underline;
}
.text-light a
{
  color:white;
  text-decoration:underline;
}
@media (max-width: 600px) {
  .flex-container {
    flex-wrap: wrap;
  }
}
.image
{
  max-height:300px;
  max-width:300px;
}
h1
{
  font-size:32px;
  margin:0;
  padding:10px;
}
h2
{
  font-size:24px;
  margin:0;
  padding:10px;
}
input.double,.double
{
  -ms-transform:scale(1.7);
  -moz-transform:scale(1.7);
  -webkit-transform:scale(1.7);
  -o-transform:scale(1.7);
}
.row
{
  gap:0px;
}
.gg
{
  background-color:gold;
  padding:5px;
  border:solid 1px black;
}
.bg-custom
{
  background-color: #3E2723; /* Marron Chocolat */
}

.relief
{
  box-shadow:
    inset -5px 5px 10px rgba(255, 255, 255, 0.5),
    inset 5px -5px 10px rgba(192, 192, 192, 0.5)
  ;
}
.shine
{
  position:relative;
  overflow:hidden;
}
.shine::before
{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:rgba(255, 255, 255, 0.2);
  transform:rotate(30deg);
  animation:shine 3s infinite;
}
@keyframes shine {
  0% {
    top: -200%;
    left: -200%;
  }
  100% {
    top: 100%;
    left: 100%;
  }
}

.btn,.badge
{
  position: relative;
}
.btn::before,.badge::before
{
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(50% - 2px);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  pointer-events: none;
}
