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/**
Palette: https://scrimba.com/links/hometown-palette
RED: #E63946
LIGHT: #F1FAEE
AQUA: #A8DADC
LIGHT BLUE: #457B9D
DARK BLUE: #1D3557
\
F1FAEE
*/
#main{
background-image: url("images/tlaxcala.webp");
background-size: cover;
background-position: center;
width: 100%;
height: 500px;
display: flex;
flex-direction: column;
align-items: center;
color: aliceblue;
padding: 0;
margin: 0;
}
#header-one{
background-color: #1D3557;
padding: 5px 10px;
border-radius: 15px;
text-shadow: 0 0 2px black;
}
#header-two{
background-color: #457B9D;
padding: 5px 10px;
border-radius: 15px;
font-size: 20px;
}
.activities-pics{
height: 175px;
width: 175px;
border-radius: 50%;
}
.activities-pics:hover{
transform: scale(1.1);
transition: 0.5s;
}
#activities-container{
background-color: #F1FAEE;
}
h3{
margin: 0px;
padding: 60px;
font-size: x-large;
color: #1D3557;
}
#nav-activities{
display: flex;
justify-content: space-around;
border-top: 0px;
height: 300px;
}
body {
font-family: "Noto Sans", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings:
"wdth" 100;
margin: 0;
text-align: center;
}
img {
width: 100px;
}
h4{
color: #1D3557;
}
#card{
display: flex;
width: 700px;
gap: 40px;
margin: 40px auto;
padding: 50px;
justify-content: space-between;
text-align: center;
background-color: #A8DADC;
}
#avatar{
height: 150px;
width: 150px;
}