body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
}

.background {
  height: 100vh;
  width: 100vw;
  background-image: url('bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: 600px;
  height: 550px;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border: 4px solid #a16d2b;
  background-color: #fdf6e3;
  background-image:
    linear-gradient(to right, rgba(161, 109, 43, 0.15) 30px, transparent 30px),
    linear-gradient(to bottom, rgba(161, 109, 43, 0.15) 30px, transparent 30px);
  background-size: 60px 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.menu-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.menu-button {
  display: inline-block;
  background-color: #a16d2b;
  color: white;
  padding: 10px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: bold;
  min-width: 120px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.menu-button:hover {
  background-color: #8a5c24;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.profile-pic-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 20px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  transform: scale(1.7);
   transform-origin: center 25%;
}

.status-text {
  color: #6a441e;
  font-size: 1.2em;
  font-weight: bold;
}