body {
    background-color: rgb(255, 255, 255);
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

h1 {
    text-transform: uppercase;
    font-size: 60px;
}

#counter {
    color: aliceblue;
}

#btn {
    background-color: #007BFF; 
    color: white; 
    padding: 15px 30px; 
    font-size: 40px;
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); 
    transition: all 0.2s ease-in-out; 
}

#btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3); /* Increase shadow depth */
    transform: translateY(-2px); /* Slightly lift the button */
}

#btn:active {
    background-color: #003f7f; /* Even darker blue when clicked */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3); /* Reduce shadow for pressed effect */
    transform: translateY(2px); /* Simulate press */
}

#cnt {
    font-size: 50px;
    margin: 50px;
}

#cc {
    font-size: 30px;
    margin: 0;
    margin-top: 10px;
}

#rst {
    display: none;
    font-size: 30px;
    border-radius: 8px;
    border: none;
}

#rwd {
    width: 700px; /* Set appropriate width */
    height: auto;
    position: absolute;
    display: none;
    z-index: 10; /* Make sure it shows on top of other elements */
}
