-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (70 loc) · 1.15 KB
/
Copy pathstyle.css
File metadata and controls
71 lines (70 loc) · 1.15 KB
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
*{
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
header{
height: 400px;
background-color: #333;
}
.header-content{
display: flex;
justify-content: space-between;
align-items: center;
max-width: 900px;
margin: 0 auto;
padding: 20px;
}
.header-content h3{
font-size: 27px;
color: white;
}
.header-content h3 span{
color: rgb(70, 118, 120);
}
.header-content button{
padding: 10px;
width: 70px;
border: none;
color: white;
background-color: rgb(70, 130, 132);
border-radius: 5px;
cursor: pointer;
}
button:hover{
transition: 0.3s;
color: black;
}
.banner{
text-align: center;
color: white;
margin-top: 75px;
}
.banner h1{
font-size: 60px;
}
main{
max-width: 900px;
margin: 0 auto;
}
main h2{
text-align: center;
margin: 10px;
}
.galeria{
display: grid;
grid-template-columns: repeat(3, 1fr) ;
gap: 20px;
margin: 20px 0;
}
.bloco{
width: 100%;
height: 450px;
margin-bottom: 50px;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.bloco img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 5px;
}