-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (87 loc) · 1.62 KB
/
style.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
body{
margin: 0;
padding: 0;
}
body {
background-image: url('./background/bg.webp');
background-size: 100% auto;
background-attachment: fixed;
}
nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
justify-content: center;
align-items: center;
}
nav li {
margin-right: 10px;
}
ul li a img {
border-radius: 50%
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-gap: 20px;
}
.gallery img {
max-width: 100%;
height: auto;
object-fit: cover;
transition: all 0.3s ease-in-out;
}
.gallery img:hover {
transform: scale(1.1);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
cursor: pointer;
}
h1 {
text-align: center;
font-size: 70px;
-webkit-text-stroke: 2px rgb(85, 0, 110);
color: white;
}
p {
font-size: 17px;
font-family: Calibri, sans-serif;
}
h3 {
text-align: center;
font-size: 20px;
}
h2 {
text-align: center;
font-size: 20px;
font-family: 'Times New Roman', sans-serif;
}
@font-face {
font-family: 'MinhaFonte';
src: url('./fonte/LEMONMILK-Medium.otf');
}
body {
font-family: 'MinhaFonte', sans-serif;
}
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
#imgGrande {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: contain;
background-color: rgba(0, 0, 0, 0.9);
z-index: 999;
cursor: pointer;
}