body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(
    to bottom,
    #0f2027,
    #203a43,
    #2c5364
  ); /* dark gradient background */
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-container {
  margin-bottom: 20px;
}

.profile-image {
  border-radius: 50%; /* creates a round image */
  width: 150px; /* adjust as needed */
  height: 150px; /* adjust as needed */
}

.links-container {
  display: flex;
  justify-content: center;
}

.icon-link {
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  height: 1.6em;
  width: 1.6em;
  margin: 0 20px; /* adjust as needed */
  text-align: center;
  line-height: 1.6em;
  color: #0a0a0a;
  font-size: 1.6em;
}

.icon-link:hover {
  background: #0002;
  border-radius: 50%;
}
