body {
  background-color: rgba(58, 56, 61, 0.856);
}
h1 {
  color: blue;
}
p {
  color: black;
  margin-bottom: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.boxed-header {
  display: flex;              /* Puts items side by side */
  justify-content: center;    /* Centers them horizontally */
  align-items: center;        /* Aligns them vertically */
 gap: 300px;                  /* Space between words */
  border: 2px solid rgb(233, 136, 9);
  background-color: rgb(255, 106, 0);
  padding: 20px;
  width:100%;
max-width:1205px;
margin:auto;

}


.logo {
  height: 150px;
  width: 140px;
  align-content: center;
}
.box {
  flex: 1;             /* Makes both boxes equal width */
  border: 1px solid rgb(85, 70, 70);
  padding: 10px;
  text-align: center;
  height: 700px;
  width:100%;
max-width:1200px;
margin:auto;
grid-template-columns:1fr 1fr;
grid-template-rows:auto auto;
border-radius:20px;
  overflow:hidden;
}

.container{
  display:grid;
  grid-template-columns:1fr 1fr;
grid-template-rows:auto auto;
  gap:10px;
  padding:10px;
  border:2px solid black;
  background-color: rgb(255, 106, 0);
  width:100%;
max-width:1230px;
margin:auto;
}
.box2{
background-color: rgb(255, 106, 0);
  border-radius:40px;
  text-align:center;
  flex: 1px;
  border: 1px solid rgb(85, 70, 70);
  padding:30px;
  line-height:1.6;
  grid-template-columns:1fr 1fr;
grid-template-rows:auto auto;
}
.welcome-text {
    margin-bottom: 70px; /* adds space below the welcome line */
}
img{
  max-width:100%;
  height:auto;
}

.box, .box2{
  min-width:0;
}
.box3{
background-color: rgb(255, 106, 0);
  border-radius:40px;
  text-align:center;
  flex: 1px;
  border: 1px solid rgb(85, 70, 70);
  padding:30px;
  line-height:1.6;
  grid-template-columns:1fr 1fr;
grid-template-rows:auto auto;
}