-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (46 loc) · 1.14 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
body {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('pictures/Civilization 250.jpg');
background-position: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: auto;
margin: 0;
text-align: center;
background-size: auto;
font-family: 'Roboto', sans-serif;
}
main, header, footer {
color: white; /* Change this to the color you want */
padding: 10px;
font-family: 'Roboto', sans-serif;
}
.paragraph {
width: 60%;
margin: 0 auto;
font-family: 'Roboto', sans-serif;
font-size: x-large;
}
.description-picture {
display: flex;
justify-content: space-between;
width: 100%; /* Adjust this to take full width */
font-family: 'Roboto', sans-serif;
font-size: x-large;
}
.description-picture .description {
flex: 1;
margin-right: 10px;
display: flex;
align-items: center;
justify-content: center;
}
.description-picture .picture {
flex: 1;
margin-left: 10px;
}
.description-picture .picture img {
width: auto; /* Adjust this value as needed */
height: 400px;
}