Skip to content

Commit b909868

Browse files
authored
Create styles.css
1 parent 10f20aa commit b909868

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

styles.css

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
@import url("https://fonts.googleapis.com/css2?family=Manrope:[email protected]&family=Moderustic:[email protected]&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
2+
3+
html {
4+
font-size: 16px;
5+
}
6+
7+
body {
8+
margin: 0;
9+
padding: 0;
10+
font-family: "Manrope", sans-serif;
11+
background-color: #fff;
12+
13+
background-size: cover;
14+
color: #000;
15+
display: flex;
16+
height: 100vh;
17+
justify-content: center;
18+
align-items: center;
19+
}
20+
21+
div {
22+
text-align: center;
23+
}
24+
25+
div h1 {
26+
font-size: 2.5rem;
27+
}
28+
29+
div a,
30+
a:visited {
31+
color: #3a80f6;
32+
}
33+
34+
div a:hover {
35+
color: #6a9ffc;
36+
}

0 commit comments

Comments
 (0)