@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@600&display=swap');

body {
  background-color: #567;
  font-family: Noto Sans;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: white;
}

.navbar {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-grow: 3;
  background-color: grey;
  border-radius: 30px;
  height: 70px;
}

.navbar a {
  color: white;
  text-decoration: none;
  text-align: center;
  float: left;
  padding: 14px 14px;
  font-size:25px;
  margin-top: 5px;
  margin-right: 100px;
}

.navbar a:hover {
  background-color: #67a1db;
  border-radius: 8px;
}

#header {
  margin-top: 150px;
  font-size: 60px;
}

.search-container {
  display: flex;
  flex-direction: row;
  max-width: 350px;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: none;
}

.search-container input {
  border-radius: 40px;
  width: 100%;
  font-family: Noto Sans;
  height: 50px;
  border: none;
  margin-bottom: 20px;
  text-align: center;
}

.footer {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.footer button {
  border-radius: 20px;
  font-family: Noto Sans;
  background-color: 2274e0;
  border: none;
  color: white;
  margin-right: 10px;
  padding: 15px;
  font-size: 15px;
}

.footer button:hover {
  cursor: pointer;
  background-color:#165dba;
}
