body {
  font-family: Arial, sans-serif;
  background-color: #f1f5f9;
  color: #0f172a;
}

.container {
  padding: 20px;
}

/* App Bar Styles */
.app-bar {
  background-color: #00000000;
  padding: 16px;
  text-align: left;
}

.logo {
  height: 30px;
}

.hompage h2 {
  font-size: 2rem;
  color: #0f172a;

  margin: 0;
  padding: 0;
}

.homepage h4 {
  font-size: 1.25rem;
  font-weight: normal;
  color: #0f172a;

  margin: 0;
  padding: 0;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 80%;
  max-width: 400px;
}

button {
  padding: 16px;
  background-color: #6700a6;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #6f06b0;
}

button:active {
  background-color: #540188;
}

/* Homepage-Specific Styles */
.homepage .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin-top: 50px;
}

.homepage .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.homepage .text-container {
  text-align: center;
  margin-bottom: 30px; /* Space between text and buttons */
}

.homepage .text-container h2 {
  margin-bottom: 10px; /* Space between h2 and h4 */
}

.footer {
  text-align: center;
  padding: 20px;
  position: relative; /* Footer is relative to the body content */
  margin-top: auto;
  font-size: 14px;
}

.footer a {
  text-decoration: none;
  color: #6f06b0; /* Match the primary color */
}

.footer p {
  margin: 5px 0 0;
  color: #333; /* Dark color for the text */
}
