/* Set a background image for the main content */
body, main {
  background-image: url("./images/arizona.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.icon-image {
  width: calc(1.3rem + .6vw);
  margin-bottom: 0.3rem;
}

/* Slightly modified from https://bootstrapexamples.com/@zobaidul-kaziex/user-profile-card-with-bootstrap */
.profile-card {
  border: 1px solid #ddd;
  border-radius: 0.375rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  margin: auto;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.profile-card-image {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.profile-card h2 {
  margin: 0.5rem 0;
  font-size: 1.75rem;
}
.profile-card p {
  color: #555;
  font-size: 1rem;
}
