@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900;1000&display=swap");
:root {
  --primary-color: #033b4a;
  --secondary-color: rgb(135, 135, 255);
  --gray: #4a4a4d;
  --bg-primary: #ecf0f3;
  --hover-color: #02181e;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Cairo", sans-serif;
}
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
}

form {
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #ccc;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background: #28a745;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

button:hover {
  background: #218838;
}

/*navbar*/
.nav {
  padding: 5px;
  display: flex;
  justify-content: space-around;
  background-color: var(--primary-color);
  align-items: center;
}
.brand {
  font-size: large;
  color: white;
  text-decoration: none;
}
.nav a {
  display: flex;
  list-style: none;
  padding: 0;
  font-weight: bold;
  list-style: none;
  text-decoration: none;
  color: white;
  font-size: larger;
  transition: transform 0.3s ease;
}
.nav a:hover {
  transform: scale(1.5);
}
.right {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.nav-links {
  width: 30%;
  padding: 1px;
  display: flex;
  justify-content: space-between;
}
/*end of navbar*/
