body{
    padding: 0;
    margin: 0;
    height: 100vh;
    font-family: 'Press Start 2P', cursive;
    background-color: #74EBD5;
    background-image: linear-gradient(180deg, #74EBD5 0%, #9FACE6 50%, #ebd5df 100%);


}

.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 20px;

}

.premain{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.n{
    font-size: 34px;
    font-family: 'Press Start 2P', cursive;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    border: 1px solid black;
    background-color: yellow;
    /* padding: 30px; */
    width: 150px;
    height: 100px;
    
}

h4{
    background-color: yellow;
    /* border: 1px solid black; */
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0px 1px 6px black;
}

h1{
    text-shadow: 3px 3px 3px yellow;
    margin-bottom: 35px;
}

.main-container{
    display: flex;
    justify-content: center;

}
.agn{
    text-align: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input{
    font-size: 30px;
    font-family: 'Press Start 2P', cursive;
    text-align: center;
    outline: none;
    border: 3px solid black;
    /* border-radius: 10px; */
    width: 150px;
    height: 80px;
    box-shadow: 0px 0px 1px black;
    margin-bottom: 30px;
}
button{
    font-size: 20px;
    font-family: 'Press Start 2P', cursive;
    padding: 10px 12px;
    box-shadow: 0px 0px 2px black;
    background-color: yellow;
    border: 1px solid black;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn-again{
    font-size: 10px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 6px 6px;
    margin-bottom: 0;
}

@media(max-width:700px){
    .nav-container{
        flex-direction: column;
    }
    body{
        display: flex;
        flex-direction: column;
    }
    h1{
        margin-bottom: 35px;
    }
    input{
        margin-bottom: 30px;
    }
    button{
        margin-bottom: 30px;
    }
    .btn-again{
        margin-bottom: 0;
    }
}