* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}
#clock {
    font-size: 7rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: 20%;
}
#quote-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
#quote {
    font-size: 1.5em;
    margin-bottom: 10px;
}
#author {
    font-size: 1.2em;
    color: #555;
}