body {
  margin: 0;
  padding: 0;
  background-color: #2d2d2d; /* Dark grey/anthracite background */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  text-align: center;
  margin: 0 20px; /* Adjust the margin to the left/right borders */
}

.logo {
  width: 100%; /* Ensure the logo takes up the full width of the container */
  max-width: 1880px; /* Maximum width of the logo */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 30px; /* Increase spacing between logo and icons */
}

.icons {
  display: flex;
  justify-content: space-between;
  max-width: 300px; /* Adjust the maximum width of the icons container */
  margin: 0 auto; /* Center icons horizontally */
}

.icons a {
  display: block;
}

.icons img {
  width: 80px; /* Default size of the icons */
  height: auto; /* Maintain aspect ratio */
}

@media only screen and (max-width: 600px) {
  /* Media query for screens with a width of 600 pixels or less (typical mobile devices) */
  .icons img {
      width: 60px; /* Adjust the size of the icons for mobile */
  }
}
