/* General body styling with background image */
body {
  background-color: #404258;
  background-image: url(./images/background.jpg);
  color: white;
}

/* Header title styling */
h1 {
  display: flex;
  justify-content: center;
  color: white;
}

/* Navigation bar styling */
nav {
  display: flex;
  justify-content: space-around;
}

/* Link styling */
a {
  text-decoration: none;
  color: white;
  text-decoration: underline;
}

/* Section title styling */
h2 {
  display: flex;
  justify-content: center;
  font-size: 30px;
  text-shadow: 5px 5px 20px black;
}

/* Project group styling with grid layout */
.project-group-1 {
  background-color: rgba(1, 1, 1, 0.4);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

/* Project title styling */
h3 {
  text-align: center;
  font-size: 20px;
}

/* Image styling */
img {
  margin: 5%;
  box-shadow: 5px 5px 10px black;
}

/* Paragraph text styling */
p {
  margin-top: 2px;
  margin-right: 2%;
  margin-left: 25%;
  font-size: 20px;
}

/* Footer styling */
footer {
  margin-top: 30px;
  display: flex;
  justify-content: space-evenly;
}

/* Responsive design for smaller screens */
@media (max-width: 700px) {
  .project-group-1 {
    display: flex;
    flex-direction: column;
  }
}
