.container h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
}

.container h1, .container h2, .container h3 {
    margin-top: 2rem;
    color: #2c3e50;
}

.container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.container hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 2rem 0;
}

/* Default (Dark Mode) */
.clock-container {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    color: #ffffff; /* Warna teks untuk mode gelap */
    font-family: 'Arial', sans-serif;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
}

.date {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: normal;
    letter-spacing: 0.5px;
    opacity: 0.8; /* Beri transparansi pada teks */
}

.clock {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Light Mode */
body.light-mode .clock-container {
    color: #2c2c2c; /* Warna teks untuk mode terang */
}

body.light-mode .date {
    opacity: 1; /* Tingkatkan visibilitas di mode terang */
}

body.light-mode .clock {
    font-weight: bold;
}