/* Footer styling */



footer {
  display: flex;
  justify-content: space-between; /* Space items horizontally */
  align-items: center; /* Align items vertically */
  background: rgba(183, 137, 112, 0.8); /* Background color with transparency */
  margin-top: 30px;
  padding: 0;
  list-style-type: none; /* Remove list bullets */
}

@media (max-width: 1000px){
  footer {
    margin-top: 0;
  }
  
}

/* Styling for text within the footer */
footer p {
  text-align: start; /* Text alignment */
  font-size: 12px; /* Font size */
}

/* Styling for Instagram icon */
.fa-instagram {
  color: rgba(94, 94, 94, 0.9); /* Icon color */
  transition: 1s;;
}

.fa-spotify {
  color: rgba(94, 94, 94, 0.9); /* Icon color */
  transition: 1s;;
}

/* Styling for all icon elements within the footer */
footer .fa {
  padding: 20px 10px 20px 0; /* Padding around icons */
  font-size: 30px; /* Font size */
  text-align: center;
  text-decoration: none;
  margin: 5px 2px; /* Margin around icons */
  font-size: 2rem; /* Font size (again) */
}

/* Hover effect for icons */
.fa:hover {
  opacity: 0.7; /* Reduce opacity on hover */
  font-size: 40px;
}
