html {
  height: 100%;
}

:root {
  --primary-color: #7dba00;
  --secondary-color: #f5e326;
  --brown: #514124;
}

body {
  background-color: #fffca6;
  background-size: 100% 100%;
}

*, *:before, *:after {
  box-sizing: border-box;
}

body.dark {
  background: black;
}

body.white {
  background: white;
}

h1 {
  color: black;
  font-family: sagona-medium, sans-serif;
  font-size: 40px;
  text-align: center;
  padding: 0px;
  text-transform: lowercase;
}
@media (max-width: 1443px) {
  h1 {
    font-size: 30px;
  }
}
@media (max-width: 1280px) {
  h1 {
    font-size: 29.6px;
  }
}

h2 {
  color: #5D4B4D;
  font-family: brandon-grotesque, sans-serif;
  font-size: 40px;
  font-weight: 100;
  letter-spacing: -2px;
  text-align: center;
  padding: 0px;
}
@media (max-width: 1443px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 1280px) {
  h2 {
    font-size: 29.6px;
  }
}

.transitionable {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 60px;
  overflow-y: auto;
  will-change: transform;
}

.btn {
  font-family: brandon-grotesque-bold, sans-serif;
  line-height: 40px;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #5D4B4D;
  background-color: white;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 80%;
  border-radius: 50px;
  margin: 0 auto;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none;
}
@media (max-width: 1443px) {
  .btn {
    line-height: 30px;
    font-size: 9.75px;
    height: 37.5px;
    border-radius: 37.5px;
  }
}
@media (max-width: 1280px) {
  .btn {
    line-height: 29.6px;
  }
}
@media (max-width: 1280px) {
  .btn {
    font-size: 9.62px;
  }
}
@media (max-width: 1280px) {
  .btn {
    height: 37px;
  }
}
@media (max-width: 1280px) {
  .btn {
    border-radius: 37px;
  }
}

.btn.btn-large {
  font-size: 40px;
  height: 100px;
}
@media (max-width: 1443px) {
  .btn.btn-large {
    font-size: 30px;
  }
}
@media (max-width: 1280px) {
  .btn.btn-large {
    font-size: 25.6px;
  }
}
@media (max-width: 1024px) {
  .btn.btn-large {
    font-size: 28.4px;
  }
}
@media (max-width: 1443px) {
  .btn.btn-large {
    height: 75px;
  }
}
@media (max-width: 1280px) {
  .btn.btn-large {
    height: 64px;
  }
}
@media (max-width: 1024px) {
  .btn.btn-large {
    height: 71px;
  }
}

label {
  font-weight: bold;
}

select, input[type=text], input[type=email], input[type=password], input[type=tel] {
  margin: 0;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ced4da;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
}

.break {
  margin-top: 20px;
}
@media (max-width: 1280px) {
  .break {
    margin-top: 14.8px;
  }
}