
*{
    margin: 0;
    box-sizing: border-box;
}

.container {
    height: 100vh;
    background: linear-gradient(to right bottom,#7429C6, #C951E7);
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.container .game-container{
    padding: 25px;
    background-color: #171E30;
    border-radius: 15px;
}

.container .game-container h1{
    text-align: center;
    background: linear-gradient(to right bottom,#7429C6, #C951E7);
    color: transparent;
    background-clip: text;
}

.container .game-container .sramblle {
    height: 68px;
    background-color: #4A5567;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 32px;
    text-align: center;
    color: white;
    margin-top: 30px;
    box-shadow: 0px 4px 0px 0px #030616;
}

.container .game-container .scores {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    align-items: center;
    color: white;
}

.scores .tries {
    display: flex;
}

.scores .tries div{
    height: 15px;
    width: 15px;
    background-color: #4A5567;
    border-radius: 50%;
    margin-left: 5px;
}
.wrongDot {
    background: linear-gradient(to right bottom,#7429C6, #C951E7);
}

.game-container .container-inputs {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 50px;

}

.game-container .container-inputs input {
    width: 50px;
    margin-right: 5px;
    padding: 13px;
    border-radius: 15px;
    font-size: 18px;
    outline: none;
    border: 1px solid #4A5567;
    background-color: transparent;
    color: white;
    text-align: center;
}

.game-container  .btns {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
.game-container button {
    padding: 15px 20px;
    border-radius: 15px;
    margin-right: 15px;
    color: white;
    background-color: #C951E7;
    outline: none;
    border: none;
    filter: drop-shadow(0px 4px 0px #7b248a);
}


