/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  display: flex;
  justify-content: center;
  background-color: black;
  padding: 15px 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 15px;
}

.navbar a:hover {
  background-color: grey;
  border-radius: 5px;
}

.landing-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url("Images/pexels-kyle-miller-169884138-15447422.jpg") no-repeat
    center center/cover;
  color: whitesmoke;
  text-align: center;
  padding: 0 20px;
}

.landing-page h1 {
  font-size: 50px;
  margin-bottom: 15px;
}

.landing-page p {
  font-size: 18px;
}

.image-gallery {
  display: grid;
  gap: 20px;
  padding: 20px;
  grid-template-rows: repeat(3, auto);
  background-color: lightgray;
}

.image-gallery div {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.image-gallery img {
  width: 280px;
  height: 280px;
  border-radius: 8px;
}

#about {
  padding: 40px;
  text-align: center;
  background-color: lightseagreen;
}

.footer {
  background-color: black;
  color: skyblue;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.socialmedia div {
  display: inline-block;
  margin: 0 10px;
  font-size: 20px;
}

.socialmedia div i {
  color: white;
  cursor: pointer;
}

.socialmedia div i:hover {
  color: #aaa;
}
