.container {
    display: flex; 
    overflow: scroll;
}

img {
    width: 300px;
    border-style: solid;
}

body {
    font-family: "Trirong", serif;
    background-color: #F4EBDC
}

h1 {
    text-align: center;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: rgb(178, 178, 178);
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

  li a:hover {
    background-color: #111;
    color: white;
  }

  .navigation {
    display: flex;
    justify-content: center;
  }
  