@font-face {
	font-family: "PNS";
	src: url("fonts/proximanovasemibold.ttf") format("truetype");
}

body {
	margin: 0;
}

main {
  margin: 0; /* Setzt den Seitenrand auf 0, um eine zentrierte Ausrichtung zu ermöglichen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.maindiv {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.imger {
  width: 600px;
}

body {
  font-family: Rubik, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  overflow-x: hidden;
  color: #607289;
}

h5 {
  font-size: 1rem;
  line-height: 1.375;
  font-family: Rubik, Arial, sans-serif;
  font-weight: 500;
  color: #030929;
}

a {
  color: #818494;
  font-weight: 500;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #007bff;
  text-decoration: none;
}

footer {
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2); /* Schatten-Verlauf von oben */
}

header {
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2); /* Schatten-Verlauf */
}

.searchbarflex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: var(--text);
  width: 40vw;
  border-radius: 10px;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin-top: 8%;
  margin-bottom: 10%;
  transition: all 1s;
  cursor: pointer;
  color: grey;
}
.searchbarinput {
  background-color: var(--text);
  color: var(--text-dark);
  border: none;
  width: 70%;
  height: 60px;
  font-size: 24px;
  font-family: "PNS";
  font-weight: 500;
  transition: all 1s;
}
.searchbarinput:focus {
  outline: none;
}
.searchbarbtn {
  width: 20%;
  border: 0.75px solid #2ea043;
  color: #2ea043;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  font-family: "PNS";
  font-weight: bold;
  transition: all 1s;
}
.searchbarbtn:hover {
  background-color: #2ea043;
  font-family: "PNS";
  color: white;
  transition: all 1s;
}
#search-btn-working:hover {
  font-family: "PNS";
  color: white;
  transition: all 1s;
}
