-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
69 lines (56 loc) · 1.04 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Libre Baskerville', serif;
}
h1 {
font-size: 100px;
margin-bottom: 20px;
}
p {
font-size: 42px;
}
.NYC {
height: 100%;
}
.newyork {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
max-width: 1200px;
margin: 0 auto;
padding-top: 100px;
}
.text {
padding-right: 100px;
margin-bottom: 40px;
}
.newyork img {
width: 1500px;
filter: grayscale();
}
.newyork2 {
margin-top: 100px;
max-width: 1200px;
margin: 0 auto;
padding-top: 100px;
}
.newyork2 p {
font-size: 42px;
margin-bottom: 60px;
}
.newyork2 img {
width: 800px;
}
.Cupertino {
color: white;
background-color: rgb(37, 37, 37);
padding-bottom: 50px;
}