body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

.container {
  width: 100%;
  height: calc(100% - 30px); /* Înălțimea containerului redusă cu înălțimea footer-ului */
  display: flex;
  justify-content: center;
  align-items: center;
}

img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 5px 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row; /* Alinierea elementelor pe același rând */
}

.phone-number {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  margin-left: 5px; /* Spațiu mic între textul "Rezervări" și numărul de telefon */
}