body {
    background: #c0c0c0 url('data:image/gif;base64,R0lGODlhBAAEAIAAAP///wAAACH5BAEAAAAALAAAAAAEAAQAAAIEhI+py+0PoyxmAAAAOw==') repeat;
    font-family: "MS Sans Serif", Arial, sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 10px;
}

.container {
    background: white;
    border: 2px outset #c0c0c0;
    padding: 15px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    color: #800080;
    font-family: "Times New Roman", serif;
    font-size: 24px;
    text-align: center;
    text-decoration: underline;
    margin-bottom: 5px;
}

h2 {
    color: #008000;
    font-family: "Times New Roman", serif;
    font-size: 18px;
    text-decoration: underline;
    margin-top: 25px;
}

h3 {
    color: #000080;
    font-family: "Times New Roman", serif;
    font-size: 16px;
    margin-top: 20px;
}

p {
    text-align: justify;
    line-height: 1.3;
    margin: 10px 0;
}

.blink {
    animation: blink 1s linear infinite;
    color: red;
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.marquee-container {
    background: #ffff00;
    border: 1px solid black;
    padding: 5px;
    margin: 15px 0;
}

marquee {
    color: red;
    font-weight: bold;
}

.divider {
    text-align: center;
    margin: 20px 0;
}

hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    margin: 8px 0;
}

li:before {
    content: "🔸 ";
}

.guestbook-link {
    background: #ffd700;
    border: 2px outset #c0c0c0;
    padding: 10px;
    text-align: center;
    margin: 15px 0;
    cursor: pointer;
}

.footer {
    background: #e0e0e0;
    border: 2px inset #c0c0c0;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
    font-size: 11px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.footer-link {
    background: #c0c0c0;
    border: 2px outset #c0c0c0;
    padding: 8px 15px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
}

.footer-link:hover {
    border: 2px inset #c0c0c0;
    background: #a0a0a0;
}

.flame-text {
    background: linear-gradient(45deg, red, orange, yellow);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    font-size: 16px;
}

.center {
    text-align: center;
}

.made-with {
    font-size: 10px;
    color: #666;
    margin-top: 10px;
}