/* General body styling with background image */
body {
  background-color: black;
  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 styling with grid layout */
section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background-color: rgba(1, 1, 1, 0.4);
  margin: 2rem;
  height: 300px;
}

/* Image styling */
.pictures {
  margin-top: 15%;
  box-shadow: 10px 10px 10px black;
}

.pictures-even {
  margin-top: 8%;
}

/* Section title styling */
.title {
  padding: 20px;
}

/* About me text styling */
.about-me {
  margin-top: 10%;
  margin-right: 1rem;
}

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

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