<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    color-scheme: light;
}


*{
    font-family: "Noto Sans Devanagari";
}

body {
    overflow: hidden;
    max-width: 600px;
    overscroll-behavior: none;
}

#share{
    margin: 5px;
    padding: 5px;
}

.bold-text {
    font-weight: bold;
}

.w3-content{
     max-width:620px; 
}

header{
    border-radius: 4px;
}
.center-text{
    text-align: center;
}

.blur{
    filter: blur(8px);
}

#difficulty-form{
    padding: 10px;
    text-align: justify;
    max-width: 400px;
    margin: auto;
    margin-top: 10px;
}

#enter-button{
    min-width: 100px;
}

#instruction-container{
    margin: 10px;
    padding: 10px;
    font-size: larger;
}

#instruction-container.dark-mode{
    color: white;
}

.icon-row{
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 10px;
    gap: 1vw;
    font-size: x-large;
    font-weight: 700;
}

#input-container{
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 10px;
    gap: 1vw;
    /* font-size: x-large;
    font-weight: 700; */
}

.icon-row.dark-mode{
    color: white;
}

#left-icons{
    align-self: flex-start;
    font-size: x-large;
    font-weight: 700;
}

#right-icons{
    display: flex;
    flex-direction: row;
    gap: 10px;
}


.icon{
    min-width: 20px;
    min-height: 20px;
    font-size: x-large;
    font-weight: 700;
    
}

.w3-button{
    padding:8px 0;
    min-width: 60px;
}

#wordList-container{
    display: table;
    margin:auto;
    padding: 10px;
    font-size: 20px;
    color:#000000;
    overflow-wrap: anywhere;
}

#wordList-container.dark-mode{
    color:#ffffff;
}

#keyboard-container{
    margin: 10px;
    max-width: 600px;
}

#marathi-keyboard{
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: row;
}

.EKBrow{
    display: flex;
    flex-wrap: wrap;
    /* padding-top: 10px; */
    padding-bottom: 10px;
    flex-direction: row;
    justify-content: center;
}

.key{
    font-family: "Noto Sans Devanagari";
    font-size: 1.3em;
    /*font-weight: bold;*/
    border: 0;
    padding: 0;
    margin: 6px 6px 0 0;
    height: 42px;
    max-width: 35px;
    min-width: 34px;
    border-radius: 4px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #d3d6da;
    color: #000000;    ;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    -webkit-tap-highlight-color: rgba(0, 0, 0, .3);
}

.w3-button{
    padding:8px;
    min-width: 60px;
}

.cell.dark-mode{
    color:#ffffff;
    outline-color: #ffffff;
    background-color: #006472;
}

.clickable{
    border-radius: 50%;
}

.clickable:hover {
    cursor: pointer;
}

.centralCell{
    border-radius: 0%;
    outline: #000000 solid 4px;
}

.dark-mode {
    background-color: rgb(56 56 56);
}

.correct{
    background-color: #6afa67;
}

.dark-mode.correct {
    background-color: rgb(0, 142, 12);
}

.selected{
    background-color: #f37fd4;
}

.dark-mode.selected{
    background-color: #c4008f;
}


.w3-container:before{
    content:none;
}

#answer-container{
    margin: 10px;
    padding: 10px;
}

#answer-container.dark-mode{
    color: #ffffff;
}



#suggestions-container{
    margin: 2px;
    padding: 5px 10px;
    border-radius:6px;
    /* width: 600px; */
    text-align: center;
}

.scrollable{
    overflow: scroll; /*to be added to attempt section when 
    one of the user entered word is longer than 15 */
}




.letter{
    font-family: "Noto Sans Devanagari";
    font-size: 1.5em;
    /*font-weight: bold;*/
    border-bottom: 2px solid;
    border-color: #000000;
    padding: 0;
    height: 30px;
    width: 30px;
    min-height: 30px;
    min-width: 30px;
    /*border-radius: 4px;*/
    /* cursor: pointer; */
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    /* background-color: #d3d6da; */
    color: #000000;    ;
    /* flex: 1; */
    /* display: flex;
    justify-content: center;
    align-items: center; */
    text-transform: uppercase;
    -webkit-tap-highlight-color: rgba(0, 0, 0, .3);
    transition: transform 1s;    
}

.symbol{
    max-width: 10px;
    min-width: 5px;
    width: 10px;
    border-bottom: 0;
}


.flipYellow {
    animation: flipYellow 1s ease forwards;
}

.flipGrey {
    animation: flipGrey 1s ease forwards;
}

.flipGreen {
    animation: flipGreen 1s ease forwards;
}

@keyframes flipYellow {
    0% {
      transform: scaleX(1);
    }
  
    50% {
      
      transform: scaleX(0);
    }
  
    100% {
      transform: scaleX(1);
      background-color:#c8b653;
      color:#ffffff;
      
    }
}

@keyframes flipGrey {
    0% {
      transform: scaleX(1);
    }
  
    50% {
      
      transform: scaleX(0);
    }
  
    100% {
      transform: scaleX(1);
      background-color:#787c7f;
      color:#ffffff;
      
    }
}

@keyframes flipGreen {
    0% {
      transform: scaleX(1);
    }
  
    50% {
      
      transform: scaleX(0);
    }
  
    100% {
      transform: scaleX(1);
      background-color:#6ca965;
      color:#ffffff;
      
    }
}


.WLI{
    border: 2px solid;
    border-color: #000000;
    height: 0px;
    width: 30px;
    min-height: 0px;
    min-width: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.WLIDarkMode{
    border-color: #ffffff;
}


.hide{
    display: none;
    visibility: collapse;
    height: 0;
    width: 0;
}

.hide-cell{
    visibility: hidden;
}


/* .dark-mode .input-row, .dark-mode .full-word{
    background-color: #d3d6da;
} */

.dark-mode .w3-card{
    /* border: solid;
    border-color: #ffffff; */
    box-shadow: 0 2px 5px 0 rgb(255 255 255 / 16%), 0 2px 10px 0 rgb(255 255 255 / 12%);
}

.footer-container{
    margin: 5px;
}
.dark-mode .footer-container{
    color: #ffffff;
}

.greenBGC{
    background-color:#6ca965;
    color:#ffffff;
}

.yellowBGC{
    background-color:#c8b653;
    color:#ffffff;
}

.greyBGC{
    background-color:#787c7f;
    color:#ffffff;
}

.hide{
    display: none;
    visibility: collapse;
    height: 0;
    width: 0;
}

@media screen and (min-width: 500px) {
    .key:hover{
        font-size: 1.8em;
        font-weight: bold;
        /* background-color: #9e9e9e00; */
    }

    .icon:hover{
    
        fill:rgb(32, 21, 240);
    }
    
}

@media screen and (max-width: 500px) {

    #top-letter-container{
        overflow: scroll;
    }
    
    .key {
        height: 40px;
        min-width: 30px;
    }

    .mobile-hide{
        display: none;
    }

    .w3-container{
        padding-right: 3px;
        padding-left: 3px;
    }

    #english-keyboard .key{
        min-width: 25px;
        margin-right:4px;
    }
}



.shake-horizontal {
    display: inline-block;
    animation: shake-horizontal 0.8s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake-horizontal {
    10%, 90% {
        transform: translateX(-10px);
    }

    20%, 80% {
        transform: translateX(10px);
    }

    30%, 50%, 70% {
        transform: translateX(-8px);
    }

    40%, 60% {
        transform: translateX(8px);
    }
}



/* Spinner animation */
.spinner {
    border: 10px solid #f3f3f3;
    /* Light gray */
    border-top: 10px solid #340edd;
    /* Blue */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    position: fixed; /* Fixed position keeps it in place even on scroll */
    top: 50%; /* Centers the spinner vertically */
    left: 50%; /* Centers the spinner horizontally */
    transform: translate(-50%, -50%); /* Corrects for the element’s size */
    z-index: 9999; /* Ensures the spinner is at the forefront */
}

.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#comment-section{
    margin: 10px;
    padding: 10px;
}</pre></body></html>