21 lines
330 B
CSS
21 lines
330 B
CSS
|
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap");
|
||
|
|
||
|
body {
|
||
|
font-family: "Open Sans", serif;
|
||
|
background-color: var(--clr-primary);
|
||
|
}
|
||
|
|
||
|
a,
|
||
|
p,
|
||
|
label,
|
||
|
h1 {
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
a,
|
||
|
p,
|
||
|
label,
|
||
|
div {
|
||
|
font-size: 14px;
|
||
|
}
|