You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

83 lines
773 B

/*----------------------------------------*/
/* 03. TYPOGRAPHY CSS START
/*----------------------------------------*/
* {
margin: 0;
padding: 0;
}
body {
font-family: $font_barlow;
}
html {
scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0;
margin: 0;
position: relative;
z-index: 1;
}
h1 {
font-size: 36px;
}
h2 {
font-size: 36px;
}
h3 {
font-size: 30px;
}
h4 {
font-size: 24px;
}
h5 {
font-size: 20px;
}
h6 {
font-size: 18px;
}
ul,
ol {
padding: 0;
margin: 0;
}
li {
list-style: none;
}
a {
text-decoration: none;
transition: all 0.3s;
}
p {
padding: 0;
margin: 0;
font-style: normal;
line-height: 1.9;
font-weight: 500;
font-size: 16px;
color: var(--black-2);
}
img {
max-width: 100%;
}