/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #D8CCF7;
  color: black;
  font-family: "Comic Sans MS", cursive;
  
  .content {
    margin-left: 200px;
    padding: 20px;
    }
  
  .header {
    /* margin-left: 200px; */
    height: 177px;

    background-image: url("site header 182.png"); /* nu conteaza inaltimea pozei ma ocup eu mai tarziu */
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 40px;
    font-weight: bold;
}
  
  .sidebar {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 200px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #D8CCF7; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
  border: 5px;
  border-color: black;
  border-right: 3px solid #B29AEF; /* Add border on the right side */
  box-sizing: border-box;
  position: fixed; /* Stays fixed on the left */
  top: 0;
  left: 0;
  }
  
  
  .accordion {
  background-color: #D8CCF7;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  
  
}
.accordion:hover {
        background-color: #B7A5E6;
    }
    
.panel {
        padding: 0 14px;
        display: none; /* Hides content initially */
        background-color: #D8CCF7;
        overflow: hidden;
    }
    
    