Noureldineadel65
9/5/2019 - 6:46 PM

CSS Reset

@import url('https://fonts.googleapis.com/css?family=Sulphur+Point:400,700&display=swap');
*, *::before, *::after {
	margin: 0;
	padding: 0;
	border:0;
	box-sizing: border-box;
}
html,
body {
	background-color: #fff;
	color: #222;
	font-family: 'Sulphur Point', sans-serif;
	font-weight: 400;
	font-size: 62.5%;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
button{
    border: none;
    margin: 0;
    padding: 0;
    width: auto;
    overflow: visible;
    text-align: inherit;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: normal;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    -webkit-appearance: none;
}
li {
	list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}