/* 
 * Author: TheProtonDev
 * 02 Feb 2022
/* 
Import IBM Plex Sans Thai Regular Font */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai+Looped&display=swap');

/* Define Body Style
 *
  background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);
 *
 */
html {
    height: 100%;
}

body {
  background-image: linear-gradient(to right top, #98928d,#e6e8e6, #f6fcf6);
  text-align: center;
  font-family: 'IBM Plex Sans Thai Looped', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
}

.slidecontainer {
  width: 100%;
}


/* Search Style */

.SearchWordForm{
  text-align: center;
}

input {
  align-content: center;
  border-radius: 9px;
}

.button{
  scale: 115%;
  color: white;
  background-color: #6A4DFF;
  border-width:0px;
  border:none;
}

/* Heading Style */

h1 {
  color: navy;
  margin-left: 20px;
}

/* Paragraph Style */
p{
  text-align: center;
}

/* Title Styling*/

/* Title Div*/

.TitleDiv{
  background-color: rgb(24, 24, 24);
  backface-visibility: hidden;
}

/* Title Animation*/
/* I grabbed this from: https://codepen.io/alvarotrigo/pen/PoKMyNO, so credit to them
.animate-text
{
   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;
      font-size: 70px;
}
*/
@keyframes textclip {
  to {
    background-position: 200% center;
  }
}
.included
{
        border-radius: 50%;
        width: 34px;
        height: 34px;
        padding: 10px;
        background: yellow;
        border: 3px solid orange;
        color: orangered;
        text-decoration-color: orangered;
        text-align: center;
        font: 32px Arial, sans-serif;
        font-weight: normal;
}
.excluded
{
        border-radius: 50%;
        width: 34px;
        height: 34px;
        padding: 10px;
        background: DarkGrey;
        border: 3px solid grey;
        color: white;
        /*text-decoration: line-through;
        text-decoration-color: blue;
        /* text-decoration-style: double;*/

        text-align: center;
        font: 32px Arial, sans-serif;
        font-weight: normal;
}
.correct
{
        border-radius: 50%;
        width: 34px;
        height: 34px;
        padding: 10px;
        background: palegreen;
        border: 3px solid lime;
        color: green;
        /*text-decoration: underline;
        text-decoration-color: green;
        */
        text-align: center;
        font: 32px Arial, sans-serif;
        font-weight: normal;
}

