@font-face {
  font-family: Cairo;
  src: url("../fonts/Cairo-Regular.ttf");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: Cairo;
}

html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  min-height: 100vh;
}

#main {
  width: 100%;
  max-width: 767px;
  height: auto;
  min-height: 100vh;
  /* margin: 0px auto; */
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: flex-start; */
  /* align-items: center; */
  /* color: var(--primary); */
  background-color: var(--light2);
  margin: 0px auto;
  padding-bottom: 50px;
  position: relative;
}

a {
  text-decoration: none;
}

.caution {
  color: var(--warningColor);
}

.back-btn,
.home {
  background-color: var(--light3);
  border: none;
  color: var(--primary);
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 6px; */
  cursor: pointer;
  /* margin-bottom: 1rem; */
  border-radius: 50%;
  /* padding: 10px; */
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.home {
  left: 20px;
}

#footer {
  background: var(--primary);
  height: auto;
  /* padding-bottom: 20px; */
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* color: var(--light3); */
}

#footer a{
  font-size: 13px;
  color: var(--light1);
}

#footer a i{
  font-size: 13px;
  color: var(--dark1);
}

:root {
  --primary: #f89d72; /* Primary: Buttons, icons, details */
  --primaryDark: #6b4226; /* Primary Dark: Links, CTAs, hover/focus */

  --light1: #ffffff; /* Light 1: Headings, BGs, buttons, clean text */
  --light2: #f5f2ee; /* Light 2: Body text, input backgrounds */
  --light3: #e2d6ce; /* Light 3: Borders, subtle backgrounds */

  --dark1: #3b2f2f; /* Dark 1: Headings, main backgrounds */
  --dark2: #5a4634; /* Dark 2: Secondary backgrounds */
  --dark3: #7b6656; /* Dark 3: Borders, shadows, details */

  --successColor: #6b8e23; /* Muted earthy green */
  --warningColor: #d2691e; /* Warm brownish orange */
  --errorColor: #8b0000; /* Deep red-brown */
  --informationColor: #8b7355; /* Muted taupe for info */
}
