* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.websitemainparent {
display: flex;
align-items: center;
justify-content: center;
background-image: radial-gradient(white, #a29f9f);
position: relative;
height: 400px;
width: 80%;
margin: auto;
   
}
.box1{
  position: absolute;
  bottom: 0;
  right: 0;

}
.box1 img{
  width: 400px;
  
}
body {
  background-color:fafa;
  color: #333;
  line-height: 1.6;
}

/* Header Section */
header {
  text-align: center;
  padding: 30px;
  background: #fff;
}
.maindiv{
  display: flex;
}


header h1 {
  margin-top: 10px;
  font-size: 2em;
  color: #222;
}

header h1 span {
  font-weight: 400;
  color: #666;
  font-size: 0.8em;
}

.quote {
  font-style: italic;
  font-family: initial;
  font-size: 1.1em;
  color: #444;
}

/* Timeline Section */
.timeline-section {
    width: 68%;
    margin: auto;
    padding: 30px 0;
    font-family: Arial, sans-serif;
}

.timeline-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.1;
}

.timeline .item {
    display: grid;
    grid-template-columns: 150px auto;
    padding: 12px 0;
    border-bottom: 1px solid #cfcccc;
}

.timeline .date {
   font-style: italic;
    color: #333;
}

.timeline .text {
   background-color: #d6d1d1;
    line-height: 1.5;
}



/* Nutshell Section */
.nutshell {
  margin: 40px auto;
  width: 30%;
  background: #fff;
  padding: 20px;
 
}

.nutshell h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #444;
}

.nutshell table {
  width: 100%;
  border-collapse: collapse;
}

.nutshell td {
  padding: 8px;
  border-bottom: 1px solid #eee;
}

/* Footer Section */
footer {
  text-align: center;
  padding: 30px;
  background: #f2f2f2;
  margin-top: 20px;
  margin-left: 140px;
  width: 80%;
}

footer blockquote {
  font-style: italic;
  font-size: 1.1em;
  margin-bottom: 15px;
   font-family: initial;
}

footer a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  text-decoration: underline;
}
footer p {
    font-family: initial;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-section, .nutshell {
    width: 95%;
    padding: 15px;
  }

}