-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
60 lines (49 loc) · 1020 Bytes
/
styles.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
body, html {
margin: 0;
padding: 0;
}
.container {
display: flex;
}
.text-side {
background-color: black;
color: white;
width: 50%;
padding: 20px;
box-sizing: border-box;
font-size: 18px; /* Increase the base font size */
}
.text-side a {
color: #FE5E32; /* orange color URL*/
}
.image-side {
width: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.image-side img {
max-width: 100%; /* Reduce the maximum width of the image */
height: auto;
}
#logo {
width: 100px; /* Adjust as needed */
}
h1 {
font-size: 40px; /* Increase the size of the main header */
}
h2 {
font-size: 20px; /* Increase the size of the secondary header */
}
button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
font-size: 18px; /* Increase the size of the button text */
margin: 10px 0;
}
#artists {
font-size: 16px; /* Increase the size of the artist text */
}