Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/testing.codeskitter.site/five/
Upload File :
Current File : /home/users/unlimited/www/testing.codeskitter.site/five/global.css

:root {
  --primary-orange: #eb5607;
  --primary-dark-blue: #18233f;
  --white: #ffffff;
  --black: #000000;
  --text-light: #ffffff;
  --text-dark: #000000;
  --text-gray: #838383;
  --text-medium-gray: #5c5c5c;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1512px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}