body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background:url("../img/back_for_start-page.698776d9b83e.png") no-repeat center center fixed;
  background-size: cover;
  color: white;
}

/* Navigation Menu */
.navbar {
  padding: 15px;
  display: flex;
  justify-content: center; /* Align button to the center */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.navbar .btn-admin {
  width: 30%;
  font-size: 1.1em;
  padding: 10px 20px;
  background-color: #ffd700; /* Gold color for admin button */
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.navbar .btn-admin:hover {
  background-color: #ff4500;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
}

.content {
  max-width: 800px;
  padding: 20px;
  background-color: rgba(255, 165, 0, 0.5); /* Golden overlay */
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

h1 {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffd700; /* Gold color for title */
}

p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.btn {
  font-size: 1.1em;
  padding: 15px 30px;
  background-color: #ff6347; /* Button color */
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background-color: #ff4500;
}

.explore-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100vh;
  padding: 20px;
  text-align: left;
}
