body {
    font-family: 'Verdana', 'Arial', 'sans-serif';
    font-size: 13px;
    color: #333333;
    
    background-color: #BB85AB; /* Fallback color */
    background-image: url('Mishadance.gif'); 
    background-repeat: repeat;
    
    margin: 0;
    padding: 0;
    text-align: center; /* Centers the whole container */
}

/* Main wrapper for the entire website content */
.site-wrapper {
    width: 800px;
    margin: 20px auto;
    text-align: left;
}

/* Header and titles */
.header h1 {
    font-size: 32px;
    margin-bottom: 5px;
    color: #FFB6C1;
    text-shadow: 2px 2px 4px #000000;
}

.header p {
    margin-top: 0;
}

/* Main content container with the three columns */
.container {
    display: flex;
    justify-content: center;
    gap: 0;
}

/* Styles for the three columns */
.left-sidebar, .right-sidebar, .main-content {
    background-color: #ffffff;
    border: 1px solid #000000;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
}

.left-sidebar {
    width: 200px;
}

.main-content {
    width: 400px;
}

.right-sidebar {
    width: 200px;
}

/* Main image styling */
.central-image {
    text-align: center;
    margin-bottom: 10px;
}
.central-image img {
    max-width: 100%;
    height: auto;
    border: 1px solid #000000;
}

/* Navigation menu */
.menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.menu li a {
    display: block;
    padding: 6px;
    margin: 2px 0;
    background-color: #f0f8ff;
    border: 1px solid #a0c0ff;
    text-decoration: none;
    color: #333;
    text-align: center;
}

.menu li a:hover {
    background-color: #e0f0ff;
}

/* Guestbook section */
.guestbook {
    text-align: center;
    margin-top: 10px;
}

/* Footer */
.footer {
    font-size: 0.9em;
    padding: 10px;
}

.footer p {
    margin: 5px 0;
}