@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");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}



:root {
  --secondary-text: #25667b;
  --secondary-btn-op: rgba(37, 102, 123, 0.74);
  --header-bg: rgb(224, 224, 224);
  --primary-text: #0099cc;
  --primary-bg: #e2ebf6;
  --black-text: #000000;
  --bg-black: #000000;
  --white-text: #ffffff;
  --bg-white: #F9F0D5;
  --bg-light: #F9F0D5;
  --btn-darkgreen: #065f46;
  --btn-light-shade: rgba(209, 250, 229, 0.87);
  --btn-green: rgba(39, 174, 96, 0.87);
  --btn-red: rgba(235, 87, 87, 0.87);
  --murstad-color: rgba(116, 100, 40, 0.67);
}

/* Navbar css here */
.custom-navbar {
  background-color: var(--header-bg);
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.custom-navbar-toggler {
  border: none;
  background-color: transparent;
  font-size: 1.6rem;
  color: var(--black-text);
}
.navbar-brand img {
  width: 105px;
}

body{
  background-color: #F9F0D5 !important;
}
