body {
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #282c34;
  color: #abb2bf;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px; /* to ensure there's some space on smaller screens */
}

a {
  color: #61afef;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  margin-bottom: 25px;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

h2 {
  margin-bottom: 15px;
}

ul li {
  font-size: 1.2em;
}

/* Adjustments for the icons for a cleaner look */
.fab {
  margin-right: 8px;
}

footer {
  margin-top: 10px;
  text-align: center;
}

#nate-avatar {
  width: 40px; /* Adjust size as needed */
  height: 40px; /* Ensure it's square for best circular appearance */
  border-radius: 50%; /* Makes the image circular */
  margin-right: 5px; /* Adds some spacing between the image and text */
  vertical-align: top; /* Aligns the middle of the image with the middle of the text */
}

#connections {
  margin-top: 40px;
  text-align: center; /* Centers the text and inline elements */
  width: 100%; /* Takes full width available */
}

#connections ul {
  list-style: none;
  padding: 0;
  display: flex; /* Makes the list items appear side by side */
  justify-content: center; /* Centers the list items horizontally */
  gap: 20px; /* Spacing between list items */
}