body {
background-color:black; 
  color:orange;

}
main {
  background-color:orange;
  color:black;
  display:flex;
  flex-directon:column;
  align-items: center;
  flex-direction:row;
  justify-content: center;
}
h1{
  font-size:90px;
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.left {
  float:left;
    margin-right:50px;
  margin-bottom:50px;
  width:200px;
  height:200px;
}
.left2 {
  float:left;
    margin-right:50px;
  width:100px;
  height:100px;
  
}

.right {
  float:right;

margin-bottom:100px;

  width:200px;
  height:200px;
}
.right2 {
  float:right;



  width:50px;
  height:50px;
}
.container {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px;

}
footer{
  background-color:gray;
    display:flex;
  flex-directon:column;
  align-items: center;
  flex-direction:row;
  justify-content: center;
  
}
.navbar {
  display: flex;
  /* Space things out evenly across the horizontal line */
  justify-content: space-between; 
  /* Center items vertically */
  align-items: center; 
  
  padding: 1rem 2rem;
  background-color: #333;
  color: white;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 60px; /* Modern way to space flex items */
}
