.container {
    display: flex;
    flex-direction: row; /* Horizontal layout for sidebar and content */
    min-height: 100vh; /* Make sure the container takes the full height of the viewport */
  }

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* styles for the body */
body {
    font-family: sans-serif;
    color: #333;
    background-color: #fafafa;
    line-height: 1.6;
}

/* align sidebar and content */
.container {
    display: flex;
}

/* Header section  */
header {
    position: fixed;
    background-color: #181818;
    color: white;
    padding: 10px;
    text-align: center;
    display: flex;
    justify-content: center;  /* Center the content */
    align-items: center;
    z-index: 1000;
    height: 100px;
    width: 100%;
    left: 0;
}


header h1 {
    margin: 0;
    text-align: center;
    font-size: 60px;
}

/* Footer section styling */
footer {
    background-color: #f9f9f9;
    color: #181818;
    padding: 10px 20px;
    text-align: center;
    position: static;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}
