@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');
* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  transition: all .1s linear;
}

:root {
  --dark-bg: rgb(27, 27, 27);
  --dark-font: rgb(209, 209, 209);
  --light-bg: rgb(246, 246, 246);
}

html {
  scroll-behavior: smooth;
  background-color: var(--light-bg);
}

section {
  padding-top: 50px;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  flex-direction: column;
}

.section__p {
  font-size: 14px;
}

.section__header {
  font-size: 30px;
}

.global-p-text {
  text-align: justify;
  font-size: 14px;
  font-weight: 500;
}

.text-small {
  text-align: justify;
  font-size: 14px;
  font-weight: 400;
}