* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: serif;
}

:root {
  --primary-color: #023047;
  --secondary-color: #6f7dfb;
  --third-color: #da722c;
}

.container {
  width: 1134px;
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

