:root {
  --font-normaal: clamp(18px, 2vw, 30px);
  --font-large: clamp(26px, 4vw, 52px);

  --button-height: clamp(50px, 8vh, 90px);

  --card-gap: clamp(10px, 2vh, 30px);

  --nav-back: coral;
  --content-back: #909090;
}

html,
body {
  height: 100%;
  margin: 0;
  background-color: #b5a9a9;
}

body {
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  font-size: --var(--font-normaal);
  border: 4px solid var(--nav-back) !important;
  border-radius: 1em;
}

.navbar-dark {
  width: 100% !important;
  color: whitesmoke;
  margin: auto;
  background-color: var(--nav-back) !important;
  border-top-left-radius: 0.8em;
  border-top-right-radius: 0.8em;
  z-index: 99;
}

.navbar-brand {
  width: 200px;
  height: 165px;
  /* padding: 8px; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid whitesmoke;
  border-radius: 0.4em;
}

.brand-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.btn {
  background-color: rgb(116, 167, 83);
  color: rgb(27, 54, 81);
  font-size: 2.6em;
  letter-spacing: 0.1em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border: 3px solid whitesmoke;
}

.dropdown-menu {
  background-color: rgb(244, 211, 161);
  border: 3px solid var(--nav-back);
}

.dropdown-menu a:hover {
  background-color: var(--nav-back);
  color: whitesmoke;
}

.dropdown-item {
  font-size: 2.2em;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--content-back);
}

.my-footer {
  height: 5em;
  background-color: var(--nav-back) !important;
  color: cornsilk;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.15em;
  border-bottom-left-radius: 0.8em;
  border-bottom-right-radius: 0.8em;
}

.my-footer h1 {
  margin-bottom: 0;
}

.my-footer p {
  all: unset;
}