/* General page styling */
body {
    background-color: #121212;
    color: #b9f6ca; /* light green */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Page title */
h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Time display */
#time {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #66bb6a;
}

/* Div container with green-themed outline */
div {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(185, 246, 202, 0.2);
    /*border: 1px solid #66bb6a;*/
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
}

/* Button styling */
button {
    background-color: #b9f6ca;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #66bb6a;
}

/* Anchor inside button */
button a {
    color: #121212;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-block;
}
