@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;

  font-style: normal;
  color: rgb(55, 55, 55);
}

body {
  background-color: rgb(253, 253.253);
  padding: 20px;
  font-size: small;
  font-weight: 300;
}
header,
section {
  border-bottom: 1px solid black;
  margin-bottom: 1rem;
}
header .thanks {
  position: absolute;
  right: 5px;
  top: 5px;
}
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.navigation {
  display: flex;
  flex-wrap: wrap;
}
.navigation h1 {
  margin: auto;
  margin-top: 0.5rem;
}
.navbar {
  min-width: 330px;
  padding-right: 1rem;
  margin: auto;
  display: flex;
}
.navbar a {
  padding: 0.5rem;
  margin: 0.2rem;
  font-size: smaller;
  border: 1px dashed black;

  text-align: center;
}
.navbar a:hover {
  box-shadow: 0px 5px 18px -3px rgba(0, 0, 0, 0.67);
  -webkit-box-shadow: 0px 5px 18px -3px rgba(0, 0, 0, 0.67);
  -moz-box-shadow: 0px 5px 18px -3px rgba(0, 0, 0, 0.67);
}
.navbar a:visited,
.navbar a {
  color: black;
  text-decoration: none;
}
.shabbat_visible {
  display: none;
}
.shabbat_now header div.navigation,
.shabbat_now footer {
  display: none;
}
.shabbat_now main *:not(.shabbat_visible) {
  display: none;
}
.shabbat_now div.shabbat_visible {
  display: block;
}

header img {
  border-radius: 50%;
  max-width: 10rem;
}
h1 {
  text-align: center;
  margin-bottom: 10px;
}
h2 {
  margin-bottom: 10px;
}
p {
  padding-right: 1rem;
  margin-bottom: 1.5rem;
}
.contact-us-form {
  margin-bottom: 20px;
}
.inputbox {
  display: flex;
  padding: 10px;
  flex-direction: column;
  max-width: 330px;
}
.inputbox input {
  padding: 5px;
  outline: none;
  border: 1px dashed gray;
  border-radius: 2rem;
}
.inputbox label {
  padding: 10px;
  min-width: 120px;
  text-align: start;
  display: none;
}
.inputbox button {
  padding: 5px;
  cursor: pointer;
  width: 80px;
  margin: auto;
  border: 1px solid #a9a7a7;
  border-radius: 2rem;
}
.inputbox button:hover {
  box-shadow: 0 0 5px #525251;
}
.inputbox .feedback {
  color: red;
  display: none;
}
.works_gallery {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}
.site_card {
  width: 25%;
}
.site_card img {
  max-width: 100px;
  width: 100%;
  border-radius: 10px;

  box-shadow: 0px 5px 18px -3px rgba(0, 0, 0, 0.67);
  -webkit-box-shadow: 0px 5px 18px -3px rgba(0, 0, 0, 0.67);
  -moz-box-shadow: 0px 5px 18px -3px rgba(0, 0, 0, 0.67);
}
.site_card a:hover img {
  color: #525251;
  box-shadow: 0 0 5px #525251;
  text-shadow: 0 0 5px #525251;
}
