body { | |
background: #87CEEB; /* Krishna blue */ | |
font-family: 'Bubblegum Sans', cursive; | |
color: #000; | |
text-align: center; | |
margin: 0; | |
padding: 0; | |
} | |
h1 { | |
color: #FFD700; /* Butter yellow */ | |
margin: 20px 0; | |
} | |
nav { | |
background: #FFD700; | |
padding: 10px; | |
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); | |
} | |
nav a { | |
margin: 0 15px; | |
color: #000; | |
text-decoration: none; | |
font-size: 1.2em; | |
} | |
nav a:hover { | |
text-decoration: underline; | |
} | |
.container { | |
padding: 20px; | |
} | |
#chat-container { | |
width: 80%; | |
max-width: 600px; | |
margin: 20px auto; | |
border: 2px solid #FFD700; | |
padding: 20px; | |
background: #fff; | |
border-radius: 10px; | |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |
} | |
#chat-messages { | |
height: 300px; | |
overflow-y: scroll; | |
margin-bottom: 20px; | |
border: 1px solid #ccc; | |
padding: 10px; | |
background: #f9f9f9; | |
border-radius: 5px; | |
} | |
#chat-messages p { | |
margin: 5px 0; | |
} | |
#chat-form { | |
display: flex; | |
justify-content: center; | |
gap: 10px; | |
} | |
#message-input { | |
width: 70%; | |
padding: 10px; | |
font-family: 'Bubblegum Sans', cursive; | |
border: 1px solid #ccc; | |
border-radius: 5px; | |
} | |
button { | |
padding: 10px 20px; | |
background: #FFD700; | |
border: none; | |
border-radius: 5px; | |
cursor: pointer; | |
font-family: 'Bubblegum Sans', cursive; | |
font-size: 1em; | |
} | |
button:hover { | |
background: #FFC107; | |
} | |
#comic-strip { | |
display: flex; | |
flex-wrap: wrap; | |
justify-content: center; | |
gap: 10px; | |
margin-top: 20px; | |
} | |
#comic-strip img { | |
max-width: 200px; | |
border-radius: 5px; | |
box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); | |
} | |
#countdown { | |
font-size: 1.2em; | |
margin: 20px 0; | |
color: #FFD700; | |
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); | |
} | |
#birthday-image { | |
max-width: 300px; | |
border-radius: 10px; | |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); | |
margin: 20px 0; | |
} | |
#birthday-message { | |
font-size: 1.2em; | |
color: #FFD700; | |
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); | |
margin: 20px 0; | |
} |