/* COLOR PALETTE AND GLOBAL SETTINGS */

html {
  scroll-behavior: smooth;
}


:root {
  --brown-dark: #463F3A;
  --brown-medium: #8A817C;
  --gray-light: #BCB8B1;
  --off-white: #F4F3EE;
  --blush: #E0AFA0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--off-white);
  color: var(--brown-dark);
}


a {
  text-decoration: none;
  color: var(--brown-dark);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--blush);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-weight: 400;
  font-size: 2.5rem;
}


input:-webkit-autofill,
textarea:-webkit-autofill {
  box-shadow: 0 0 0px 1000px var(--gray-light) inset !important;
  -webkit-text-fill-color: var(--brown-dark) !important;
  font-family: inherit !important;
}