@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #709CA7;
}

h1 {
  color: #709CA7;
  font-size: 28px;
}

.main-header {
  margin-left: 50px;
  margin-top: 30px;
  margin-right: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20x;
  padding: 10px 20px;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.left-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  height: 35px;
  width: auto;
}

.center-section ul {
  display: flex;
  font-size: 20px;
  list-style: none;
  font-weight: 600;
  gap: 60px;
}

.center-section a {
  text-decoration: none;
  color: #1f1f1f;
  transition: color 0.2s ease;
}

.center-section a:hover {
  color: #607994;
  transform: scale(1.1);
}

.login-btn {
  background-color: #344D59;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 100px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
	background-color: #6790a3;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 15px 0;
  text-align: center;
}
