/*body{
    background-color: #0b1a2b; 
    font-family: Arial;
    text-align: center;
    margin-top: 150px;
}

.container{
    background-color: black;
    width: 300px;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px navy;
}

h2{
    color: white;
}

#count{
    color: #00aaff;
    font-size: 35px;
    font-weight: bold;
}

button{
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.increaseBtn{
    background-color: navy;
    color: white;
}

.decreaseBtn{
    background-color: #111;
    color: white;
    border: 1px solid navy;
}

button:hover{
    box-shadow: 0px 0px 10px #00aaff;
}

*/



/* Body */
body{
    background-color: #0b1a2b; 
    font-family: Arial;
    text-align: center;
    margin: 0;
    height: 100vh;
}

/* Intro Section */
.intro{
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.intro h1{
    color: #00aaff;
    font-size: 50px;
    margin: 0;

        text-shadow: 0 0 1px #1f0d93, 0 0 5px #00aaff;

}

.intro p{
    color: rgb(125, 146, 222);
    font-size: 20px;
    margin-top: 10px;

        text-shadow: 0 0 0px #ffffff, 0 0 0px #ffffff;

}


.intro button{
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: navy;
    color: white;
    transition: 0.3s;
}

.intro button:hover{
    box-shadow: 0 0 10px #00aaff;
    transform: scale(1.05);
}


.container{
    background-color: black;
    width: 300px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px navy;
    display: none; 
}


h2{
    color: white;
}

#count{
    color: #00aaff;
    font-size: 35px;
    font-weight: bold;
    display: inline-block;
    text-shadow: 0 0 5px #6db9df51, 0 0 10px #565d60;
}


button{
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.increaseBtn{
    background-color: navy;
    color: white;
}

.decreaseBtn{
    background-color: #111;
    color: white;
    border: 1px solid navy;
}

button:hover{
    box-shadow: 0px 0px 10px #00aaff;
    transform: scale(1.05);
}


#resetbtn button{
    background-color: green;
    color: white;

}
