-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (56 loc) · 1.17 KB
/
styles.css
File metadata and controls
72 lines (56 loc) · 1.17 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
72
body {
font-family: "Montserrat", sans-serif;
}
#header{
color: rgb(241, 234, 234);
background-image: url("images/monument.jpg");
background-repeat: no-repeat;
background-position: center;
background-size: cover;
text-align: center;
padding: 100px 20px;
}
#header h1, h2{
text-shadow: 0px 0px 5px black;
}
#main{
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin-top: 25px;
}
.pics{
border-radius: 5%;
border: 3px solid rgb(22, 13, 31);
width: 400px;
height: 400px;
}
.description{
margin-top: 10px;
}
h3{
font-weight: bold;
}
#story{
background: #fefae0;
margin-bottom: 15px;
text-align: center;
border: 4px solid #d4a373;
border-radius: 20px;
border-bottom: 6px solid #e76f51;
}
#footer-content {
background: #d4a373;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: column;
align-items: center;
padding: 10px;
font-weight: bold;
}
.author-img{
object-fit: cover;
width:75px;
border-radius: 35%;
}