@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
  /* outline: 1px dotted red; */
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}

html,
body {
  height: 100%;
  width: 100%;
}

:root {
  --white: #ede4da;
  --fade: #bfb8b4;
  --black: #222222;
  --red: #ca5954;
  --orange: #e56f4b;
  --gray: #e3d4c5;
  --green: #557d55;
}

#wrapper {
  position: relative;
  height: 100dvh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}