body {
  background-color: #434344;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.navbar a {
  margin-right: 20px; /* Adjust spacing as needed */
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}
.navbar {
  display: flex;
  gap: 150px; /* Adds space between each child div */
  padding: 10px 20px;
}
hr {
  border: none;
  border-top: 1px solid #ffffff;
  margin: 15px 0;
  width: 80%;
}
#main-container {
  margin-top: 10%;
  font-family: "Courier New", monospace;
  text-align: center;
  height: 700px;
  width: 100%;
}

#welcome_message {
  font-size: 3.6em;
  color: #ffffff;
  font-family: Berlin Sans FB;
}

#main_dialoge {
  font-size: 1.6em;
  color: #00b894; /* #f9ca24 */
}
#main_dialoge:hover,
#main_dialoge:focus {
  color: #ffffff;
  font-size: 2em;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease,
    font-size 0.3s ease;
}

.search-container {
  margin-top: 25px;
  margin-left: 38%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 300px;
  transition: all 0.3s ease;
}
.search-container:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: scale(1.105);
}
.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 8px;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #fff;
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.search-btn:hover {
  transform: scale(1.1);
}

#developer-section {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00b894;
  border: 2px solid #00b894;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  margin-bottom: 30px;
}

#developer-section:hover,
#developer-section:focus {
  background-color: #00b894;
  color: #fff;
  box-shadow: 0 0 15px #00b894;
  outline: none;
}

#sub-container {
  margin-top: 5%;
  font-family: "Courier New", monospace;
  text-align: center;
  height: 800px;
  color: #ffffff;
}
#sub-container h1 {
  font-size: 2.6em;
  color: #ffffff;
}
#sub-container-data {
  font-size: 1.3em;
  padding: 0 15%;
}

.footer {
  width: 100%;
  height: 40px;
  margin-bottom: 0%;
  position: relative;
  text-align: center;
  background-color: #434344;
  color: #ffffff;
  font-size: 0.9em;
  text-decoration: none;
}
#jnv {
  text-decoration: none;
  color: #ffffff;
}
#jnv:hover {
  text-decoration: underline;
  color: #f9e5e5;
}
