/* Resetare stiluri implicite */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Container principal */
.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("/images/evodia.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Titlul paginii */
h1 {
  font-family: Arial, sans-serif;
  font-size: 2rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Paragraful principal */
p {
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  max-width: 800px;
  text-align: center;
}
