 .contianer {
     display: flex;
     background-color: rgb(7, 7, 92);
     height: 100px;
     align-items: center;
     margin: 10px;
     padding: 10px 20px;
     /* gap: 10px; */

 }

 .itam {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 70px;
     height: 70px;
     color: white;
     background-color: blue;
 }

 .long {
     width: auto;

 }

 .itam2 {
     display: flex;
     padding-left: 20px;
     justify-content: left;
     align-items: center;
     flex-grow: 1;
     width: 70px;
     height: 70px;
     color: white;
     background-color: blue;
 }

 .itam3 {
     display: flex;
     padding-left: 20px;
     justify-content: left;
     align-items: center;
     flex-grow: 1;
     width: 70px;
     height: 70px;
     color: white;
     background-color: blue;
 }

 .itam3:nth-child(3) {
     width: 30%;
     background-color: green;
 }



 .itam4 {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 70px;
     height: 70px;
     color: white;
     background-color: blue;
 }

 .long4 {
     width: auto;
     flex-grow: 1;
 }

 .itam4:nth-child(3) {
     justify-content: left;
     padding-left: 20px;
     background-color: green;
 }

 .itam5 {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 70px;
     height: 70px;
     color: white;
     background-color: blue;
 }


 .itam6 {
     display: flex;
     justify-content: left;
     padding-left: 20px;
     align-items: center;
     width: 70px;
     height: 70px;
     color: white;
     background-color: blue;
 }

 .itam6:nth-child(3) {
     background-color: orange;
     flex-grow: 1;
 }

 .container7 {
     display: flex;
     background-color: rgb(7, 7, 92);
     height: 200px;
     align-items: center;
     margin: 10px;
     padding: 10px 20px;
 }

 .itam7 {
     display: flex;
     justify-content: left;
     padding: 20px;
     /* align-items: center; */
     width: 100px;
     height: 100px;
     color: white;
     background-color: blue;
 }

 .itam7:nth-child(2) {
     width: 40%;
     height: 100px;
 }

 .itam7:nth-child(3) {
     background-color: orange;
     flex-grow: 1;
 }



 .container8 {
     display: flex;
     padding: 20px;
     flex-direction: column;
     background-color: #001f3f;
     border: 3px solid #001f3f;
     height: 200px;
     overflow-y: auto;
 }

 .row {
     display: flex;

 }

 .child {
     width: 70px;
     height: 70px;
     padding: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;

 }

 .child-3 {
     width: 70px;
     height: 70px;
     padding: 20px;
     display: flex;
     align-items: center;
     justify-content: left;
     color: white;
 }

 .blue {
     background-color: #0074D9;
 }

 .orange {
     background-color: #FF851B;
 }

 .wide {
     width: 1200px;
     flex-grow: 1;

 }

 .gallery {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 10px;
     padding: 10px;
     max-width: 800px;
     margin: auto;
 }

 .item {
     flex: 1 1 200px;
     box-sizing: border-box;
 }

 .item img:hover {
     transform: scale(1.1);
 }

 .item img {
     width: 100%;
     height: 100%;
     display: block;
     border-radius: 6px;
     object-fit: cover;
 }

 .container {
     display: flex;
     flex-direction: row;
     flex-wrap: wrap;
     gap: 10px;
     padding: 10px;
     max-width: 100%;
     margin: 30px 0px;
     text-align: center;
     background-color: pink;
 }

 header {
     width: 100%;
     height: 50px;
     background-color: #35c5d8;
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;

 }

 aside {
     width: 30%;
     height: 500px;
     background-color: #35c5d8;
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 main {
     width: 69%;
     height: 500px;
     background-color: #f55f85;
     color: white;


 }

 article {
     margin-top: 230px;
     flex: 2;
     padding: 10px;
     color: white;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .images {
     display: flex;
     gap: 10px;
     margin-top: 10px;
 }

 .images div {
     background-color: #ccc;
     flex: 1;
     height: 200px;
     width: 200px;
     display: flex;
     justify-content: center;
     align-items: center;
 }


 footer {
     width: 100%;
     height: 50px;
     background-color: #35c5d8;
     color: white;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .navbar {
     background-color: #ff4500;
     padding: 10px;
     margin: 50px 0px;
     box-shadow: 2px 2px 5px #aaa;
 }

 .navbar-container {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
 }

 .nav-links {
     display: flex;
     gap: 15px;
     flex-wrap: wrap;
     margin: 10px 0;
 }

 .nav-links a {
     color: white;
     text-decoration: none;
     font-weight: bold;
 }

 .nav-links a:hover {
     color: black;
 }

 .search-box {
     display: flex;
     gap: 5px;
 }

 .search-box .search {
     padding: 5px;
     border: none;
     border-radius: 3px;
 }

 .search-box input {
     padding: 5px 10px;
     border: none;
     background-color: white;
     color: #ff4500;
     font-weight: bold;
     border-radius: 10px;

 }

 .header {
     width: 100%;
     height: 50px;
     background-color: tomato;
     color: black;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .aside1 {
     width: 20%;
     height: 500px;
     background-color: #f7ea39;
     color: black;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .aside2 {
     width: 20%;
     height: 500px;
     background-color: #f55f85;
     color: black;
     display: flex;
     justify-content: center;
     align-items: center;
 }


 .main {
     width: 58%;
     height: 500px;
     background-color: #35c5d8;
     color: black;
     display: flex;
     justify-content: left;
     text-align: left;
 }

 .main p {
     margin: 30px;
 }


 .header_text {
     background-color: purple;
     color: white;
     text-align: center;
     padding: 20px;
     font-size: 1.5em;
 }

 .container-text {
     display: flex;
     justify-content: center;
     gap: 10px;
     padding: 20px;
     background-color: #e4e9e9;
     /* flex-wrap: wrap; */

 }

 .text_box {
     background-color: cyan;
     padding: 20px;
 }