:root {
  /* COLORS VARIABLES */
  --primary-color: #2f66f6;
  --primary-shade: #0057b8;
  --primary-tint: #e5e9fd;
  --neutral-color: #0a0f29;
  --surface-color: #ffffff;

  /* skills */
  --clr-primary-9: hsl(45, 90%, 88%);
  --clr-primary-1: hsl(43, 86%, 17%);
  --clr-primary-5: #2f66f6;
  --clr-white: #fff;
  --radius: 0.5rem;
}

*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
  font-weight: 400;
  /* Only works if there is nothing absolutely positioned in relation to body */
  position: relative;
  overflow-x: hidden !important;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

/*=============== GENERAL REUSABLE CSS CLASSES ===============*/

.container {
  /* 1200px */
  max-width: 75rem;
  padding: 0 2rem;
  margin: 0 auto;
}

.heading-container {
  display: flex;
  justify-content: center;
}

.section-heading {
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 44px;
  border-bottom: 4px solid #c1d1fc;
  width: -webkit-max-content;
  width: max-content;
  font-size: 32px;
}

h3 {
  font-size: 18px;
}
