body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f9;
}

.calendar-wrap {
    display: inline-block;
    gap: 10px;
    width: 45%;
    text-align: center;
}

.calendar-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.calendar {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.month-header {
    font-size: 1.4em;
    color: #333;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.clock-container {
    font-size: 1.5em;
    margin-top: 10px;
    font-family: 'Courier New', Courier, monospace;
    color: #333;
    margin-bottom: 20px;
}

.day {
    width: 14.28%;
    height: 40px;
    margin: 0;
    background-color: #eaeaea;
    text-align: center;
    line-height: 40px;
    color: #333;
    display: inline-block;
    box-sizing: border-box;
    border: 1px solid #fff;
}

.current-day {
    background-color: #4CAF50;
    color: white;
}

.day-header-container {
    display: flex;
    justify-content: space-between;
}

.day-header {
    font-weight: bold;
    color: #333;
    text-align: center;
    width: 14.28%;
}

.days-container {
    display: flex;
    flex-wrap: wrap;
}

.footer {
    text-align: center;
    margin-top: 50px;
    font-size: 0.9em;
}

.widget {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 5px;
}

.weather-header {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #555;
}

.weather-data {
    font-size: 1em;
    color: #333;
}

.season-widget {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 5px;
}