/* קובץ העיצוב לכותרת (לוגו, תפריט וכפתורי כניסה) בכל העמודים*/

* {
  font-family: system-ui
}

body {
  direction: rtl;
  background-color: rgb(224, 245, 245);
  position: static;
}

.hide {
  visibility: hidden;
}

.logo {
  display: block;
  margin-right: auto;
  margin-left: auto;

  transition-timing-function: linear;
  transition-duration: 0.4s;
}

.logo:hover {
  width: 250px;
  height: 250px;
}

header {
  position: relative;
}

#navigation_login {
  z-index: 2;
  position: relative;
  float: left;
  height: auto;
  margin-top: 10px;
  margin-left: 10px;
}

header .button_login {
  width: 90px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 8px;
  color: rgb(193, 226, 226);
  background-color: rgb(45, 138, 125);
  text-decoration: none;
  display: block;
  border: solid 2px rgb(193, 226, 226);
  height: 20px;
  border-radius: 6px;
  transition-duration: 0.4s;
}

.button_logOut {
  width: 200px;
  font-size: 13px;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 8px;
  color: rgb(193, 226, 226);
  background-color: rgb(45, 138, 125);
  text-decoration: none;
  border: solid 2px rgb(193, 226, 226);
  height: 20px;
  border-radius: 6px;
  transition-duration: 0.4s;
  margin-top: 50px;
}

header .button_login:hover,
.button_logOut:hover {
  font-style: inherit;
  font-weight: 500;
  font-size: 13.5px;
  color: #000000;
  background-color: rgb(54, 184, 166);
  width: 92px;
}

#navigation {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 0px;
  display: flex;
}

header .button {
  flex: 1;
  float: right;
  font-size: 17px;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 10px;
  color: rgb(193, 226, 226);
  background-color: #E67473;
  text-decoration: none;
  display: block;
  border: solid 2px rgb(193, 226, 226);
  height: 20px;
  margin: auto;
  border-radius: 6px;
  transition-duration: 0.4s;
}

header .button:hover {
  font-style: inherit;
  font-weight: 500;
  font-size: 17.5px;
  color: #000000;
  width: 150px;
}

header #user {
  margin-top: 10px;
  font-size: 20px;
  margin-right: 0;
  float: right;
}

