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.
44 lines
536 B
44 lines
536 B
html {
|
|
font-size: 16px;
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
position: relative;
|
|
margin: 0;
|
|
overflow-y: scroll;
|
|
color: $black;
|
|
background-color: $greybg;
|
|
}
|
|
|
|
a,
|
|
button,
|
|
input,
|
|
textarea {
|
|
font-family: 'Montserrat', sans-serif;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a {
|
|
transition: all ease-in-out 0.1s;
|
|
|
|
&:hover {
|
|
color: $blue;
|
|
}
|
|
|
|
&:active {
|
|
color: $darkblue;
|
|
}
|
|
}
|
|
|
|
figure {
|
|
margin: 0;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|