@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Condensed:wght@400;500&family=Tilt+Prism&display=swap');
*{
   padding: 0%;
   margin: 0;
   box-sizing: border-box;
}
body{
    height:100vh ;
    width:100vw; 
    background-color: #DCD7C9;
    font-family: 'Encode Sans Condensed', sans-serif;
}
#nav{
    width: 100%;
    height: 15%;
    background: #2C3639;
    display: flex;
    align-items: center;
}
#main{
    width: 100%;
    height: 85%;
    display: flex;
    justify-content: center;
}
#type{
    height:100%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    
    flex-direction: column;

}
#dis-ctn{
    width: 80%;
    height: 40%;
    background-color: #2C3639;
    border-radius: 15px;
    padding: 20px;
}
#dis{
    width: 100%;
    height: 100%;
    background-color: #2C3639;
    opacity: 0.8;
    font-weight: 100;
    font-size: 30px;
    color: #DCD7C9;
    overflow: scroll;
}
#dis::-webkit-scrollbar {
    display: none;
  }
  
#wri{
    width: 80%;
    height: 16%;
    background-color: #FFC18E;
    border-radius: 15px;
    opacity: 0.2;
}
#logo{
    height: 30%;
    margin: 20px;
}
input{
    width: 100%;
    height: 100%;
    font-size: 25px;
    border-radius: 15px;
    padding: 18px;
}
#timer{
    background-color: #A27B5C;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}
#time{
    font-size: 40px;
    font-family: 'Tilt Prism', cursive;
    font-weight: 600;
    color:#DCD7C9;
}
#marks{
    font-size: 30px;
    font-weight: 600;
    color:#A27B5C;
}
#accuracy{
    font-size: 30px;
    font-weight: 600;
    color:#A27B5C;
}
.highlight{
    background-color: #513252;
    border-radius: 2px;
    padding: 2px;
}
#result{
    line-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border-radius: 20px;
    background-color: #2C3639;
    width: auto;
    gap: 20px;
    padding: 20px;
    margin-top: 2px;
}
#control{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#refresh{
    background-color: #3F4E4F;
    border-radius: 50%;
    padding: 12px
}
#refresh img{
    width: 35px;
}
#footer{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}


@media screen and (max-width: 600px) {
    #footer{
        flex-direction: column;
    }
}