﻿/* style3.css */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #090510;
background-image: url("data:image/svg+xml,%3Csvg width='42' height='44' viewBox='0 0 42 44' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='Page-1' fill='none' fill-rule='evenodd'%3E%3Cg id='brick-wall' fill='%23bcb5c6' fill-opacity='0.4'%3E%3Cpath d='M0 0h42v44H0V0zm1 1h40v20H1V1zM0 23h20v20H0V23zm22 0h20v20H22V23z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

}

#content {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background-color: rgb(0 0 0 / 63%);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#content .logo {
  display: block;
  margin: 100 auto;
  width: 150px; 
  height: 150px; 
  border-radius: 50%;
  box-shadow: inset 0px 0px 14px 0px #2a2a4b;
background-color: #f5f5f569;
}

#divPlayArea {
  margin-top: 20px;
}

.lbl {
  font-weight: bold;
color: #eee;
}

.input {
  width: 100%;
    max-width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
font-size: 30px;
background-color: #2a2a4b5c;
    color: #eee;
}

.btn {
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btnLarge {
  background-color: #eeeeee96;
  color: #fff;
    margin-left: 10px;
width: 130px;
    height: 50px;
}
.btnLarge:hover{background-color: #d7431a52;}
.btnSmall {
  background-color: #eeeeee91;
  color: #fff;
  margin-left: 10px;
width: 100px;
    height: 50px;
}
img.imgl {
    width: 20px;
    padding: 5px;
}
.lang {
    background-color: #1b82f11a;
        width: auto;
    border-radius: 5px;
    padding: 5px;
}
.imgl:hover {
  opacity: 0.8; 
}
.btnSmall:hover{background-color: #d7431a52;}
.btn-info {
    float: left;
    top: -11px;
    position: relative;
    background-color: #eeeeee7d;
    border-radius: 50%;
    width: 16px;
    height: 15px;
    padding: 2px;
    color: #2a2a4b;
}
.btn-info:hover{
background-color: #8d93167d;
}
.answer
{
   text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
      margin-top: -60px;
  font-size: 18px;
  font-weight: bold;

}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}