* {
    margin: 0;
    padding: 0;
    background-color: #7DA6A8;
    font-family: 'Times New Roman', Times, serif;
    color: white;
    text-decoration: none;
}
/*********** Navbar *****************/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:  #7DA6A8;
    padding: 10px;
  }
  
  .navbar .left {
    display: flex;
    align-items: center;
  }
  
  .navbar .left img {
    margin-right: 10px;
  }
  
  .navbar .right {
    display: flex;
    align-items: center;
  }
  
  .navbar .right a {
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
    font-size: 18px; /* Reduced font size */
  }
  
  .navbar .right a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown .dropbtn {
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: rgb(23, 166, 220);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  /***************** End *****************/

.header-image img {
    width: 100%;
    height: auto;
}


#header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:  #566f70;
    padding: 20px;
    position: relative;
}

.back {
    position: absolute;
    left: 20px;
    text-align: center;
    color: white;
    background-color:  #566f70;
    font-size: 36px;
}

.title {
    text-align: center;
    color: white;
    font-size: 24px;
    background-color: #566f70;
}

html, body {
    width: 100%;
    height: 100%;
}

#container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

#videos {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#titles {
    flex: 1;
    padding-left:20px;
    top: 150px;
    position: fixed;
    right: 20px

}

.heading-box {
    background-color:  #566f70;
    padding: 10px;
    margin-bottom: 10px;  
  
}

#titles h2 {
    margin-bottom: 10px;
}

#titles ul {
    list-style: none;
    margin-bottom: 20px;
}

#titles ul li {
    margin-bottom: 5px;
}
