*{
    margin: 0;
    padding: 0;
}
.container{
    height: 100vh;
    width: 100%;
    background-image: url(bg-guess-the-word.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;   
    display: flex;
    justify-content: center;
    align-items: center;
}

.box{
    height: 20rem;
    width: 21rem;
    background-color:#030616ef;
    border-radius: 7px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
   
}
.top{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

h2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.3rem;
    margin-bottom: 1.3rem;
}
.options{
    
    height: 3.4rem;
    width: 19rem;
    background-color:#4A5567 ;
    letter-spacing: 4px;
    font-size: 24px;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #97A3B6;
    border-radius: 5px;
    box-shadow: 1px 4px 0px rgba(0, 0, 0);
    word-break: break-all;
}

.dataGuessed{
    
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-bottom: 20px;
    color: #4A5567;
    font-size: 11px;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.tries{
    display: flex;
    flex-direction: row;   
}
.mistake{
    display: flex;
    flex-direction: row;  
}
.wrongLetters{
    margin-top: -2px;
    margin-left: 3px;
    letter-spacing:2px ;
    font-size: 13px;
    color: #97A3B6;
}

.dataGuessed .dot {
    height: 5px;
    width: 5px;
    border-radius: 50%;
    margin-left: 5px;
    margin-top: 5px;
    background-color: #0d0922;     
}

.dataGuessed .dot.active {
    background-color: #7429C6;
}

.ansBox{
    display: flex;
    justify-content: center;
    align-items: center;
}
.ans{
     height: 10px;
    width: 10px;
    border: 2px solid #4A5567;
    padding: 10px;
    margin-top: 2.5rem;
    margin-right: 5px;
    margin-left: 1px;
    border-radius: 10px;
    background-color: transparent;
    color:#F2F5F9;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-optical-sizing: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.blank{
    border: 2px solid #672171; 
}

.buttons{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 1.2rem;
    padding: 17px;
  
}
button{
    height: 1.8rem;
    width: 6.3rem;
    border-radius: 5px;
    background-color: #C951E7;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    color: #F2F5F9;
    font-style: normal;
    border: none;
    box-shadow: 0px 2px 0px #af40cba3;
}



@media (max-width: 768px) {
    .box {
        width: 76%; 
    }

    .options {
        width: 100%;
    }
    .ans {
        height: 8px;
        width: 8px;
        border: 2px solid #4A5567;
        padding: 10px;
        margin-top: 2rem;
        margin-right: 4px;

    }
}



