body, html {
  margin: 0;
  height: 100%;
  background-image: url("img/background.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-size: 24px;
  text-align: justify;
}

/* Conținutul principal */
.continut {
  flex: 1;
  padding: 20px;
  /*background-color: rgba(255, 255, 255, 0.85);*/
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* umbră discretă */
  /*overflow-y: auto;*/
  overflow-y: scroll;            /* permite scroll */
  -ms-overflow-style: none;      /* Internet Explorer 10+ */
  scrollbar-width: none;         /* Firefox */
}
.continut::-webkit-scrollbar {
  display: none;                 /* Chrome, Safari și Edge */
}

.centru{
  text-align: center;
}

p {
  text-indent: 40px;
}


.pagina {
  display: flex;
  height: 100vh;
  gap: 10px;
  padding: 100px 10px 10px 10px;
  box-sizing: border-box;
}

.meniu {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch; /* schimbat din center în stretch pentru a întinde complet butoanele */
  font-size: 1.2rem;
  color: white;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.5);
}

.buton-meniu {
  display: block;
  text-decoration: none;
  color: white;
  background-color: #4CAF50;
  padding: 10px 20px;
  font-size: 26px;
  margin: 4px auto; /* centrăm orizontal */
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  border-radius: 8px;
  width: 80%;
}

.buton-doi {
  display: block;
  text-decoration: none;
  color: white;
  background-color: #5f2bbe;
  padding: 6px 12px;
  font-size: 18px;
  margin: 0px auto; /* centrăm orizontal */
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
  border-radius: 8px;
  width: 80%;
}


/*
.buton-meniu:hover {
  background-color: #083b0b;
  transform: scale(1.05);
}
*/


.buton-meniu:hover {
  background-color: #45a049;
  transform: scale(1.02);
}


.subtitlu {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px;
  text-align: center;
  color: #f0f0f0;
}


