:root{
    
    --mainbgcolor :#111111;
    --webnamecol: white ;
    --navbarbgcol: #2C2E31;
    --navitemwithouthov: rgb(82, 103, 119);
    --navitemwithhov:white;
    --timer:goldenrod;
    --correctword:#fff;
    /* for start button also */
    --wrongword:red;
    --textcolor:#646669;
    --footertabcolor:#646669;
}
*{
    box-sizing: border-box;
}
body {
    background-color: var(--mainbgcolor);
    margin-top: 0px;

}

.main-area {
    padding-top: 8px;
}

#logo-image {
    height: 75px;
    display: inline;
    padding: 0px 5px;
}

.website-name {
    display: inline;
    height: 75px;
    padding-bottom: 35px;
}

.website-name h1 {
    display: inline;
    color: var(--webnamecol);
}

.customization-area{
    height: 45px;
    width: 600px;
    margin-top: 50px;
    background-color: var(--navbarbgcol);
    align-content: center;
    border-radius: 7px;
}

.divider {
    width: 20px;
    height: inherit;
    color: var(--mainbgcolor);
    background-color: var(--mainbgcolor);
    border-radius:0.5px ;
}

.customization-area a {
    text-decoration: none;
}
.normal{
    color: var(--navitemwithouthov);
}
.normal:hover{
    color: var(--navitemwithhov);
}

.selected{
    text-decoration: none;
    color: var(--navitemwithhov);
}
.text-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 550px;
}
.countdown{
    text-align: left;
    line-height: 50px;
    width: 100%;
    background-color:  inherit;
    padding-left: 15px;
    color: var(--timer);
    font-size: 20px;
}
.input-field {
    z-index: -999;
    opacity: 0;
    position: relative;
}


.correct{
    color:var(--correctword) ;
}

.wrong{
    color: var(--wrongword);
    border-bottom: 2px solid var(--wrongword);
}
.text-content{
    align-content: flex-start;
    margin-left: unset;
    position: relative;
    width: fit-content;
    overflow: hidden;   
    background-color: inherit;
    color: var(--textcolor);
    font-size: 25px;
    font-weight: 400;
    font-family: monospace;
    user-select: none;
    display: flex;
    flex-wrap: wrap;
    white-space: normal;
    max-height: 115px;
    max-height: max-content;
    letter-spacing: 1px;
    line-height:1em;
    text-align: justify;
    filter: blur(5px);
}

.footer{
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;   
    height: 200px;

}.restart{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center; 
    padding-bottom: 15px;   
}
.box{
    font-size: 12px;
    border-radius: 2px;
    background-color: var(--footertabcolor);
    color: var(--mainbgcolor);
    margin: 0px 4px;
    padding: 1.6px 4.8px;
}
#myButton{
font-size: 24px; 
  padding: 12px 24px; 
  background-color:var(--mainbgcolor);
  border: none;
  color: var(--correctword);
}
.contact-links{
    color: var(--footertabcolor);
    text-decoration: none;
}