body {
    font-family: "Comic Sans MS", "Courier New", cursive;
    background-image: url('https://images.unsplash.com/photo-1523181887058-82fd90d1120c?q=80&w=3270&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
    padding: 20px;
    color: #006400; /* Dark green text for eye care */
}
h1 {
    text-align: center;
    color: #8B4513; /* SaddleBrown */
    text-shadow: 2px 2px 4px #FFD700; /* Gold shadow */
    font-size: 36px;
    margin-bottom: 10px;
}
h2 {
    color: #8B4513; /* SaddleBrown */
    border-bottom: 2px solid #FFD700; /* Gold border */
    padding-bottom: 5px;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #F5F5DC; /* Beige background */
    padding: 20px;
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
    border: 5px solid #CD853F; /* Peru border */
    border-radius: 15px;
}
.header {
    text-align: center;
    margin-bottom: 20px;
}
.header img {
    max-width: 250px;
    border: 5px solid #8B4513; /* SaddleBrown border */
    border-radius: 10px;
}
.content {
    margin-bottom: 20px;
    background-color: #FAFAD2; /* LightGoldenrodYellow */
    padding: 15px;
    border-radius: 10px;
    border: 2px dashed #CD853F; /* Peru border */
}
.widget {
    margin-bottom: 20px;
    text-align: center;
}
.widget-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.clock {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #FAEBD7; /* AntiqueWhite */
    border: 10px solid #8B4513; /* SaddleBrown */
    position: relative;
    margin: 0 auto;
}
.clock-number {
    position: absolute;
    font-size: 18px;
    font-weight: bold;
}
.clock-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.hour-hand, .minute-hand, .second-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: bottom center;
    background-color: #000;
}
.hour-hand {
    width: 6px;
    height: 60px;
    transform: translateX(-50%);
}
.minute-hand {
    width: 4px;
    height: 80px;
    transform: translateX(-50%);
}
.second-hand {
    width: 2px;
    height: 90px;
    transform: translateX(-50%);
    background-color: #FF0000; /* Red */
}
.calendar {
    width: 280px; /* Increased width */
    box-sizing: border-box;
    background-color: #FAEBD7; /* AntiqueWhite */
    border: 5px solid #8B4513; /* SaddleBrown */
    border-radius: 10px;
    padding: 10px;
    margin: 0 auto;
}
.calendar-header {
    background-color: #CD853F; /* Peru */
    color: white;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px; /* Reduced gap */
}
.calendar-day {
    text-align: center;
    padding: 3px; /* Reduced padding */
    background-color: #F5F5DC; /* Beige */
    border: 1px solid #CD853F; /* Peru */
    font-size: 14px; /* Reduced font size */
}
.calendar-day.today {
    background-color: #FFD700; /* Gold */
    font-weight: bold;
}
.calendar-day.header {
    background-color: #8B4513; /* SaddleBrown */
    color: white;
    font-weight: bold;
}
.links table {
    width: 100%;
    border-collapse: collapse;
    background-color: #FAFAD2; /* LightGoldenrodYellow */
    margin-top: 10px;
}
.links th {
    background-color: #CD853F; /* Peru */
    color: white;
    padding: 10px;
    text-align: left;
    border: 2px solid #8B4513; /* SaddleBrown */
}
.links td {
    padding: 10px;
    border: 2px solid #CD853F; /* Peru */
}
.links a {
    color: #006400; /* Dark green */
    text-decoration: none;
    font-weight: bold;
}
.links a:hover {
    text-decoration: underline;
    color: #8B4513; /* SaddleBrown */
}
.footer {
    text-align: center;
    color: #8B4513; /* SaddleBrown */
    font-size: 14px;
    margin-top: 20px;
    background-color: #FAEBD7; /* AntiqueWhite */
    padding: 10px;
    border-radius: 10px;
    border: 2px dashed #CD853F; /* Peru border */
}
.blink {
    animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
.marquee {
    background-color: #FAEBD7; /* AntiqueWhite */
    padding: 1rem;
    overflow: hidden;
    border: 2px solid #CD853F; /* Peru */
    border-radius: 10px;
    margin-bottom: 20px;
}
.marquee p {
    white-space: nowrap;
    margin: 0;
    animation: marquee 20s linear infinite;
    padding: 10px;
    line-height: 1.5;
}
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.travelling {
    margin-top: 20px;
    text-align: center;
}

.travelling img {
    max-width: 100%;
    height: auto;
}