body {
  margin: 0;
  padding: 0;
  background-image: url('/assets/images/background-pattern.png');
  background-repeat: repeat;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}

.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  margin-top: 0;
}

.content-table {
  background-color: #2e2e2e;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  max-width: 800px;
}

.site-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
}

.site-logo img {
  display: block;
  max-width: auto; /* Adjust as needed */
  height: auto;
}

.avatar-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.avatar {
  width: 100px;
  height: 135px;
  border-radius: 50%;
  margin-right: 20px;
}

.description {
  max-width: 400px;
  text-align: left;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu-buttons {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the buttons horizontally */
  gap: 12px;
  margin-top: 10px;
}

.menu-btn {
  width: 40%;
  min-width: 200px; /* Optional: ensures buttons don’t get too narrow on small screens */
  padding: 12px 20px;
  background-color: #1a1a1a;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
}

.menu-btn:hover {
  background-color: #ff6f61;
  transform: translateY(-2px);
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  margin: 0 10px;
  text-decoration: none;
  color: white;
  background-color: #444;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
}

.social-links a:hover {
  background-color: #666;
}