body {
    margin: 0;
    padding: 0;
    background-color: black;
    background-size: 1950px 1000px;
}
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
     background-color: wheat; 
}
ol  li {
    float: left;
}
ol li a{
    display: block;
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
ol li a:hover {
    background-color: bisque;
}
.rounded-pill {
    float:inline-start;
    width: 60px;
    height: 45px;
    background-color: chocolate;
}

/* Flex Property */
.container {
  display: flex;
  flex-wrap: wrap;
  background-color: none;
/*   border-style: double;
  border-color: darkgrey;
  border-radius: 20px 0px;
  height: 800px;
  width: 1800px;
  border-width: 3px;
  margin-left: 50px;
  margin-top: 50px;
  margin-right: 50px; */
}
.container div {
  background-color: #f1f1f1;
  width: 400px;
  height: 350px;
  margin: 10px;
  padding: 10px;
  text-align: center;  
  font-size: 30px;
}

/* Image Property */
img {
    width: 350px;
    height: 200px;
}