*{
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #FEFFEC;
    background-image: radial-gradient(gray 1.4px, transparent 1.4px);
    background-size: 30px 30px;
    
}

.main{
    width: 25rem;
    margin-top: 50px;
    padding: 2rem;
    background-color: #FAF9F6;
    border: 4px solid #000;
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: 10px 10px 0px 5px black;

}
.main #option{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;

}
.main #option button{
    width: 100%;
    padding: 8px;

    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid black;
    
}
.main #inpu{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid black;
    background-color: lightblue;
}
.main #option #easy{
    background-color: lightgreen;
    box-shadow: 5px 5px 0px 0px black;
}.main #option #medium{
    background-color: lightgoldenrodyellow;
    box-shadow: 5px 5px 0px 0px black;
}.main #option #hard{
    background-color: lightcoral;
    box-shadow: 5px 5px 0px 0px black;
}
.main .attempts {
    font-size: 1.2rem;
    font-weight: 900;
    text-align: center;
    position: relative;
    top: -15px;
    border: 2px solid black;
    background-color: pink;
    box-shadow: 4px 4px 0px 0px black;
}
.main input{
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid black;
    box-shadow: 6px 6px 0px 0px black;
}
.main input:focus{
    outline: none;
    box-shadow: 0px 0px 0px black;
    box-shadow: 6px 6px 0px 0px black;
}
.main .di{
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    top: -15px;
    border: 2px solid black;
    background-color: yellow;

}
.main #diffi{
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid black;
    background-color: lightblue;
}
.title{
    position: fixed;
    top: 30px;
    width: 40%;
    font-size: 2rem;
    font-weight: 600;
    background-color: wheat;
    border: 3px solid black;
    color: black;
    padding: 10px;
    box-shadow: 10px 10px 0px 0px black;
    text-align: center;
}
.main .submit{
    background-color: rgb(28, 91, 185);
    color: white;
    width: 100%;
    padding: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 3px solid black;
    box-shadow: 5px 5px 0px 0px black;

}

button:active {
  transform: translate(6px, 6px);
  box-shadow: 0px 0px 0px black;
  
}
button{
    cursor: pointer;
}