* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;


}

body {
    font-family: Arial, sans-serif;
}

.converter {
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    background-color: #ccc;
    background-image: linear-gradient(rgba(109, 109, 229, 0.5), rgba(232, 232, 225, 0.5)),
        url("../../media/examples/lizard.png");
    height: 400px;
}

#localTime {
    width: 100%;
    padding: 30px;
    /* Increase padding for a bigger box */
    border: 1px solid black;
    border-radius: 9px;
    /* Increase border-radius for rounded corners */
    box-sizing: border-box;
    /* Include padding within the box dimensions */
    text-align: center;
    /* Center text horizontally */
    font-size: 16px;
    /* Increase font size for better visibility */
}

#convertButton {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #6e70b4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#convertButton:hover {
    background-color: #0056b3;
}

.navbar ul li {
    margin: 0 1.5rem;
}

.navbar ul li a {
    font-size: 2rem;
    color: #fff;
}

.navbar ul li a:hover {
    color: #444;
}



#password {
    font-size: 20px;
}