body,
html {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif; /* Fallback to Arial */
  background-color: #f8f8f8; /* Slightly off-white background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.contact-photo {
  width: 150px; /* Shrink the image */
  height: 150px; /* Shrink the image */
  padding: 25px; /* Add padding to maintain the circle size */
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.contact-links,
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the contact info items */
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  vertical-align: middle;
}

.contact-icon-other {
  width: 60px; /* Double the width */
  height: 60px; /* Double the height */
  margin-right: 10px;
  vertical-align: middle;
  filter: invert(100%) brightness(100%);
}

.contact-links a,
.contact-info a {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the icons and text */
  text-decoration: none;
  color: white; /* White color for text */
  font-size: 1.2em;
  margin: 5px 0;
}
.contact-links a:hover,
.contact-info a:hover {
  color: white; /* White color for hover text */
}

.light-blue-box {
  background-color: #003eff; /* Light blue background */
  color: white; /* White text */
  padding: 10px; /* Smaller padding inside the box */
  margin: 10px; /* Smaller margin outside the box */
  border: 2px solid #003eff; /* Blue border */
  border-radius: 8px; /* Rounded corners */
  text-align: center; /* Centered text */
  display: flex; /* Flexbox layout */
  flex-direction: column; /* Column layout */
  justify-content: center; /* Center content vertically */
  max-width: 400px; /* Limit the width of the box */
  margin-left: auto; /* Center the box horizontally */
  margin-right: auto; /* Center the box horizontally */
  height: auto; /* Adjust height to fit content */
}
