* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  h1 {
    font-size: 30px;
    color: #db1111;
    text-align: center;
}
  h2 {
    font-size: 30px;
    color: #0b9211;
    text-align: center;
}
  h3 {
    font-size: 30px;
    color: brown;
    text-align: center;
}

.container{
    height:600px;
    width:1100px;
    background-color: brown;
    margin:0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wrapper {
    width: 1100px;
    max-width: 1100px;
    margin: 0 auto;
    background-color: bisque;
  }

  img {
    width: 100%;
  }
  
  /* top-level ul, centered within the nav element */
  .menubar {
    text-align: right;
    height:60px;
  }
  
  /* basic styling for the li items */
  .menubar li {
    display: inline-block;
    width: 10%;
    min-width: 100px;
    cursor: pointer;
    position: relative;
    text-align: center;
    background: brown;
    border-radius: 6px;
    margin-top: 4px;
    padding: 0.5rem 0;
  }
  
  /* basic styling for a elements inside li elements */
  .menubar li a {
    text-decoration: none;
    display: block;
    font-family: 'Montserrat', sans-serif;
    color:rgb(248, 244, 244);
  }
  
  /* changing the background color of li elements when they are hovered over */
  .menubar li:hover {
    background: rgba(238, 90, 90, 0.75);

  }
  
  /* changing the text color of a elements when their li elements are hovered over */
  .menubar li:hover a {
    color: white;
  }
  
  /* default appearance of secondary ul/submenu elements (they're present but invisible); you can also do this with visibility: hidden; */
  .menubar li ul {
  display: none;
    position: absolute;
    margin-top: 0.5rem; /* pushes the dropdown menu down to the bottom edge of the top-level li; this value needs to match the padding value given to the li element */
    z-index: 100; /* makes sure the menu items will be on top of anything below them on the page */
  }
  
  /* switching the display value of the dropdown menu from none to block when the top-level li element is hovered over; if you used visibility: hidden; as the default value, you change it to visibility: visible; here */
  .menubar li:hover ul {
  display: block;
  }
  
  /* changing the text color of the <a> element when the li containing it is hovered over */
  .menubar li ul li:hover a {
    color: white;
  }
  
  /* assigning a width of 100% so they take up the full width of the text inside them; see what happens when you remove one or both of these property/value pairs */
  .menubar li ul li {
    width: 100%;
  min-width: 100px;
    margin-top: 0px;
  }
.videok{
    background: brown;
    display: flex;
    justify-content: center;
    align-items: center;}
