/* style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background:url("../img/clock.jpg");
    background-size:cover;
    background-repeat: no-repeat;
}

div {
    display: inline-block;
}

.card {
    background-color: rgb(229, 221, 221);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 350px;
}

.card p {
    font-size:40px;
    color: #333;
    font-weight: 200;
    font-family: fantasy;
    margin: 0;
}

.card h1 {
    font-size: 36px;
    color: #007BFF;
    margin: 10px 0;
}
.card img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;  /* Forces images to have a 4:3 ratio */
    object-fit: cover;     /* Ensures images are properly resized and centered */
    margin-bottom: 10px;
    border-radius: 4px;
}
.timezone {
    font-size: 14px;
    color: #666;
}