

body { 
    background-color: lemonchiffon; 
    color: dimgray;
    text-align: center; 
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    height: auto;
    width: 100%;
    margin: 0px;

    } 
    
    h1 {
        font-size: 2.6rem; 
    }
    
    h2 {
        font-size: 1.6rem;
    }

    h3{
        font-size:  1.4rem;
        margin:0;
    }

    .container {
        display: flex;
        /* background-color: dimgray;  */
        min-height: 62%;
        justify-content: center;
        justify-self: center;
    }
    
    /* .input {
        /* background-color: pink;  
    } */
    
    .interactions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        /* background-color: dimgray; */
        min-height: 60%;
        width: 80%;

    }
    
    .content{
        background-color: aliceblue;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        box-shadow: lavender 5px 8px 5px; 
        border-radius: 30px; 
        width: 80%;
        padding: 15px;

    }

    .heading { 
    margin-bottom: 20px; 
    font-size: 3rem; 
    color: dimgray; 
    } 
    
    .counters { 
    display: flex; 
    align-items: flex-end; 
    flex-direction: column;
    background-color: aliceblue; 
    z-index: 5;
    } 

    
    .timer, .errors, .accuracy, 
    .cpm, .wpm { 
    background-color: lavender; 
    height: 60px; 
    width: 70px; 
    margin: 8px; 
    padding: 12px; 
    border-radius: 13px; 
    box-shadow: rgb(220, 220, 241) 5px 8px 5px;
    /* box-shadow: lavenderblush 5px 8px 5px; */

    } 
    
    .score-header{
        height: 20px; 
        width: 70px; 
        margin-bottom: 3px;
        margin-top: 3px;
        align-self: center;
    }
    .cpm, .wpm { 
    display: none; 
    } 
    
    .header_text { 
    text-transform: uppercase; 
    font-size: 0.73rem; 
    font-weight: 600; 
    } 
    
    .curr_time, .curr_errors, 
    .curr_accuracy, .curr_cpm, 
    .curr_wpm { 
    font-size: 2.75rem; 
    } 
    
    .quote { 
    font-size: 1.5rem;
    font-weight: bolder;
    margin: 7px;
    padding: 4px; 
    align-self: start;
    text-align: start;
    min-height: 120px;
    width: 97%;
    background-color: lightcyan;
    border-radius: 13px;
    box-shadow: rgb(220, 220, 241) 5px 8px 5px;
    } 
    
    .input_area {
    background-color: lemonchiffon; 
    height: 300px;
    width: 98%; 
    font-size: 1.5rem;
    margin: 5px;
    font-weight: 600; 
    padding: 20px; 
    border: lavender 2px; 
    border-radius: 6px;
    box-shadow: rgb(220, 220, 241) 5px 8px 5px;
    outline: none;

    } 

    .input_area:focus{
        outline: mediumpurple solid;  
    }
.game-over {
    position: absolute;
    background-color: rgba(216, 191, 216, 0.781); 
    top: 110px;
    left: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 16px;
}
    .restart_btn { 
    display: none; 
    background-color: lavender; 
    font-size: 3rem; 
    padding: 10px;
    margin: 3px;
    border: 3px rgb(213, 213, 245) double;
    border-radius: 13px;
    box-shadow: thistle 5px 8px 5px;

    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;

    cursor: pointer;

    } 
    
    .restart_btn:hover {
        cursor: pointer;
        background-color: lavenderblush; 
        box-shadow: lavender 5px 8px 5px;
    }
    .incorrect_char { 
    color: orange; 
    text-decoration: underline;
    } 
    
    .correct_char { 
    color: mediumslateblue; 
    text-shadow: 1px 1px 2px rgb(255, 255, 255), 0 0 25px rgba(0, 0, 255, 0.363), 0 0 5px rgba(0, 0, 139, 0.5);
    } 


    .hidden {
        display: none;
      }

    .area{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: lemonchiffon;  
        z-index: -5;
    }
    
    .background {
        background-color: lemonchiffon;
      }
      
      /* .foreground {
        mask-image: radial-gradient(var(--size), rgba(0,0,0,1) 40%, rgba(0,0,0,0) 60%);
        mask-position: 10% 10%;
      } */

      .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-size: cover;
        background-repeat: none;
      }

    .sources {
        position: absolute;
        bottom: 0;
        left: 3px;
        align-items: center;
    }



    /* .circles{
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        z-index: -3;
    }
    
    .circles li{
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.2);
        animation: animate 25s linear infinite;
        bottom: -150px;
        z-index: -3;
        
    } */
