:root {
  --main-bg-color: rgb(238, 238, 238);
  --padding: 20px;

  --primary-color: black;
  --secondary-color: rgb(238, 238, 238);
  --tereiary-color: blue;
  --green-color: rgb(15, 231, 15);
  
  --border1: solid 1px transparent;
  --border2: solid 1px transparent;
  --border3: solid 1px pink;

}

.key {
font-family: arial;
padding-left: 5px;

}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: blue;
}

input:focus + .slider {
  box-shadow: 0 0 1px blue;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.home {
  text-decoration: none;
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.5rem;
  font-family: arial;
  font-size: 1rem;
  border: solid 1px black;
  border-radius:50px;
  cursor: pointer;
}

.home:hover {
  background-color: var(--primary-color);
  color: var(--main-bg-color);
  padding: 0.5rem;
  font-family: arial;
  font-size: 1rem;
  border: solid 1px black;
  border-radius:50px;
  cursor: pointer;
}

.call311 {
  text-decoration: none;
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.5rem;
  font-family: arial;
  font-size: 1rem;
  border: solid 1px black;
  border-radius:50px;
  cursor: pointer;
}

.call311:hover {
  background-color: var(--primary-color);
  color: var(--main-bg-color);
  padding: 0.5rem;
  font-family: arial;
  font-size: 1rem;
  border: solid 1px black;
  border-radius:50px;
  cursor: pointer;
}

/* Style The Dropdown Button */
.dropbtn {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.5rem;
  font-family: arial;
  font-size: 1rem;
  border: solid 1px black;
  border-radius:50px;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 100%;
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content div {
  border: solid 1px var(--primary-color);
  background-color: var(--main-bg-color);
  box-shadow: 0px 8px 16px 0px rgba(75, 75, 75, 0.2);
  border-radius: 10px;
  padding: 1%;
  margin-top: 2%;
  margin-bottom: 2%;
  color: black;
  text-decoration: none;
  display: flex;
  justify-content: center;
}

/* Change color of dropdown links on hover */
.dropdown-content div:hover {
  background-color: var(--primary-color);
  color: var(--main-bg-color);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #000000;
  color: var(--main-bg-color);
}

.navBar {
  display: flex;
  justify-content: space-between;
  position: relative;
  top: 0;

  font-family: arial;
  font-size: 0.7rem;
}

button {
font-family: Arial, Helvetica, sans-serif;
font-size: 0.7rem;

  background-color: var(--main-bg-color);
  border: solid 1px black;
  border-radius: 50px;
  box-shadow: 10px 5px 10px rgb(194, 194, 194);
}

button:not(:first-child) {
  margin-top: 2%;
}

button:hover {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  
    background-color: var(--primary-color);
    color: var(--main-bg-color);
    border: solid 1px black;
    border-radius: 50px;
    box-shadow: 10px 5px 10px rgb(194, 194, 194);
  }