body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #3a2e27, #5b4d44);
    color: #e0d6c8;
    margin: 0;
    padding: 0;
}

header {
    background: #2d221b;
    padding: 30px;
    text-align: center;
    color: #f4e8d4;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

header img {
    height: 125px; /* Adjust the size of the logo */
    margin-right: 15px; /* Add space between logo and title */
}

header .title {
    display: inline-block;
    font-size: 28px;
}


nav {
    display: flex;
    justify-content: center;
    background: #3a2e27;
    padding: 15px;
}

nav a {
    color: #f4e8d4;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
}

nav a:hover {
    color: #ffcc80;
}

.container {
    display: flex;
    justify-content: space-between;
    margin: 40px auto;
    width: 90%;
}

.sidebar {
    background: #4e4035;
    padding: 20px;
    width: 25%;
    border-radius: 10px;
}

.main-content {
    background: #5b4d44;
    padding: 30px;
    width: 70%;
    border-radius: 10px;
}

footer {
    background: #2d221b;
    padding: 20px;
    text-align: center;
    color: #f4e8d4;
    margin-top: 30px;
}

