body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
    background-image: url('sambuca-background.webp');
    background-color: #1a1a1a;
    background-size: 50%;
    background-position: left;
    background-repeat: space repeat;
}
.container {
    text-align: center;
    background-color: rgba(50, 50, 50, 0.8);
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s;
    margin-bottom: 30px;
}

.info-container {
    text-align: center;
    background-color: rgba(50, 50, 50, 0.8);
    padding: 10px;
    border-radius: 10px;
    transition: background-color 0.3s;
    margin-bottom: 30px;
}

#clock {
    font-size: 48px;
    margin-bottom: 20px;
}

h1,
p,
label {
    margin: 10px 0;
}

input {
    padding: 5px;
    margin: 5px;
}

button {
    padding: 10px 15px;
    margin-top: 10px;
    cursor: pointer;
}

.hidden {
    display: none;
}

body.dark-mode {
    background-color: #ffffff;
}

.container.dark-mode {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
}
.info-container.dark-mode {
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
}

.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}