body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e1e1e;  
    font-family: Arial, sans-serif;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

#timer_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    width: 300px;
    height: auto;

    background-color: black;
    color: white;
    padding: 35px;
    border-radius: 12px;
    /*box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);*/
}

#buttons {
    margin-top: 20px;
}

button {
    margin: 0 10px;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
}

a {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    text-decoration: none;
}

#timer_text {
    font-size: 55px;
}

#text {
    border: 1px dotted blue;
    border-radius: 13px;
    padding: 10px;
}

#date {
    font-family: "Times New Roman", Times, serif;
    color: white;
}
