*{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

.container header {
   background-color: rgba(40, 225, 225, 0.333);
   color: rgb(11, 1, 1); 
    display: flex; 
   height: 50px;
   width: 1400px;
   font-size: medium;
   
}
/* @media screen and (min-width: 600px){
   body{
       background-color: green;
   }
}
@media print{
   body{
       background-color: aqua;
   }
} */
.logo h1 i{
   float: left;
   /* margin-left: 10px; */
   margin-right: 100px;
   text-align: center;
} 


.logo h1{
   float: right;
   text-align: center;
}


nav {
   float: right;
   width: 50%;
}

nav ul {
   list-style: none;
   text-align: right;
}

nav ul li {
   display: inline-block;
   margin-left: 10px;
}

nav ul li a {
   color: rgb(17, 10, 10);
   text-decoration: none;
   /* padding: px; */
   font-size: 20px;
   /* padding: 30px 0; */
   /* margin-bottom: 10px; */
   margin: 20px;
}

nav ul li a:hover {
   text-decoration: underline;
}

.clear {
   clear: both;
}
  
.sidebar{
   width: 200px;
   background-color: blanchedalmond;
   padding-top: 50px;
   position:absolute;
    height: 1200px;
   top: 50px;
   bottom: 0;
}

.sidebar div {
  color: rgb(30, 21, 21);
  display: flex;
  padding: 50px;
  margin: 10px 0;
  text-size-adjust: 100px;
}
 
 .flex-container {
    display:flex;
    flex-wrap:nowrap;
    background-color: rgb(245, 239, 239);
    /* position:absolute; */
    width: 1200px;
    margin-left: 200px;
    height: 400px;
    text-align: center;
    /* margin-top: 20px; */
 }

 .flex-container div{
    background-color: #073f4b;
    width: 200px;
    margin: 50px;
    /* text-align: center; */
    line-height: 30px;
    font-size: 60px;
    margin-top: 100px;
    height: 200px;
    padding: 30px;
    border-radius: 10px;
    
 } 

#box1{
   padding: 30px 30px 20px 20px;
   background-image: linear-gradient(pink,beige);
}

#box1 h1{
   text-align: center;
   font-size: 25px;
   margin: 0;
}

#box1 p{
   text-align: center;
   font-size: 20px;
   font-weight: bold;
   margin: 0px;
}

#box2{
   padding: 30px 30px 20px 20px;
   background-image: linear-gradient(rgb(137, 46, 62),beige);
}

#box2 h1{
   text-align: center;
   font-size: 25px;
   margin: 0;
}

#box2 p{
   text-align: center;
   font-size: 20px;
   font-weight: bold;
   margin: 0px;
}

#box3{
   padding: 30px 30px 20px 20px;
   background-image: linear-gradient(pink,rgb(154, 154, 29));
   /* line-height: 40px; */
}

#box3 h1{
   text-align: center;
   font-size: 25px;
   margin: 0;
}

#box3 p{
   text-align: center;
   font-size: 20px;
   font-weight: bold;
   margin: 10px;
   /* margin-top: 20px; */
}


#box4{
   padding: 30px 30px 20px 20px;
   background-image: linear-gradient(pink,rgb(53, 44, 131));
}

#box4 h1{
   text-align: center;
   font-size: 25px;
   margin: 0;
}

#box4 p{
   text-align: center;
   font-size: 20px;
   font-weight: bold;
   margin: 0px;
}
 


.main {
   width: 1400px;
   height: 55px;
   text-decoration: solid;
   background-color: #b2d6de;
   text-align: center;
}

.main h1 {
   float: left;
   margin-left: 300px;
}

.main h2 {
   float: right;
   padding: 10px;
   background-color: aquamarine;
   margin-left: 500px;
   text-align: right;
   /* margin-left: 300px; */
}

h2::before {
   content: "➕";
   background-color: rgb(233, 233, 193);
   text-shadow: 20px;
}

.sub {
  text-decoration: solid;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 1000px;
  margin-right: 10px;
}

.class1 {
   float: left;
   margin-right: 10px;
}

#id1 {
   float: left;
   border-radius: 10px;
}

.class2 {
   float: right;
   margin-right: 10px;
}
#Search2{
   margin-left: 20px;
   float: right;
   border-radius: 10px;
}

table {
   width: 1010px;
   margin-left: 200px;
   
}

table,
thead {
   background-color: aliceblue;
   height: max-content;
   font-size: 20ox;
   font-family: 'Times New Roman', Times, serif;
   width: 1200px;
}
tbody{
   background-color: aliceblue;
   height: max-content;
   text-align: center;
   font-size: 20px;
   font-family: 'Times New Roman', Times, serif;
   margin-left: 1500px;
}
.active{
   background-color: burlywood;
}
footer {
   background-color: #333;
   color: white;
   padding: 10px;
   text-align: center;
   position: fixed;
   bottom: 0;
   width: 100%;
   margin-left: 200px;
}
@media (max-width: 768px) {
   .container {
     flex-direction: column;
     padding: 10px;
   }
 }
 