:r:root {
  --main-bg: #f8f7f6;
  --container-bg: #fff;
  --text-main: #222;
}

body {
  background: var(--main-bg);
  color: var(--text-main);
  font-family: "Arial Rounded MT Bold", Arial, sans-serif;
  min-height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Page container */
//.container {
//  max-width: 500px;      /* or whatever width you prefer */
//  margin: 0 auto;        /* center horizontally */
//  padding: 1rem;         /* space from edges */
//}
.container {
  background: var(--container-bg);
  border-radius: 2px;
  max-width: 400px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 40px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-img {
  border-radius: 50%;
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(160,60,110,0.08);
  border: 3px solid #f3f3f3;
}
/* Responsive image list (from before) */
.image-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.image-list li {
  flex: 1 1 100px;
}

.image-list img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.image-list a:hover {
  background: var(--link-bg-hover);
  transform: translateY(-1.5px) scale(1.03);
}