body {
  background-color: darkseagreen;
  color: black;
  font-family: "Courier New";
}

.section {
  color: white;
  background-color: darkcyan;
  padding-left: 10px;
  border-top: 2px solid cyan;
  border-left: 2px solid cyan;
  border-right: 2px solid DarkSlateGrey;
  border-bottom: 2px solid DarkSlateGrey;
  box-shadow: 4px 4px 0px darkgreen;
}

.section h2 {
  margin: 5px 0;
}

.smolsection {
  color: white;
  background-color: MediumAquaMarine;
  padding-left: 10px;
  border-top: 2px solid cyan;
  border-left: 2px solid cyan;
  border-right: 2px solid DarkSlateGrey;
  border-bottom: 2px solid DarkSlateGrey;
  box-shadow: 4px 4px 0px darkgreen;
}

.smolsection h3 {
  margin: 5px 0;
}


.welcome {
  display: flex;
  align-items: flex-start; /* keeps the top aligned */
  gap: 20px;               /* space between image and text */
}

.welcome img {
  flex-shrink: 0;          /* prevent image from shrinking */
  padding-top: 5px;
}

.welcome-text {
  max-width: 500px;        /* optional: keeps text tidy */
}


.center {
  display: block;
  margin: 0 auto;
  text-align: center;
}


.center img {
  display: block;
  margin: 0 auto;
  padding-bottom: 10px;
}


                