/* Header section */
#top-header {
  display: flex;
  justify-content: center;   
  align-items: center;
  background-color: #d4e3fa;
  padding: 20px 60px;
  position: relative;        
  height: 350px;              
  overflow: hidden;          
}

/* The image */
#banner {
  position: absolute;
  top: 25px;                 
  right: 60px;               
  height: 300px;
  width: 300px;
  border-radius: 20px;
  object-fit: cover;
}

/* The name */
#top-header h1 {
  margin: 0;
  font-size: 4rem;
  font-weight: 700;
  color: #222;
  font-family: "Lucida Handwriting", cursive;}

/* Main Layout */
#layout {
  display: flex;
  justify-content: space-between;
}

/* Sidebar navigation */
nav.side-tabs {
  width: 200px;
  background-color: #eae0ff;
  padding: 20px;
  text-align: right; 
}

nav.side-tabs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.side-tabs li {
  margin-bottom: 15px;
}

nav.side-tabs a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

nav.side-tabs a:hover {
  color: #042236;
}

/* Article content */
article {
  flex-grow: 1;
  padding: 40px;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* General body styles */
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color:#e5f0e5 
}

