-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
94 lines (85 loc) · 2.41 KB
/
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
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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0 10px; /* Add padding for mobile devices */
box-sizing: border-box;
}
h1 {
font-family: Arial, sans-serif; /* Arial font with a fallback to sans-serif */
font-size: 72px; /* Adjust font size as needed */
font-weight: bold; /* Bold weight for emphasis */
color: #000; /* Black color */
margin: 20px 0; /* Vertical spacing */
text-align: center; /* Align text to the left */
line-height: 1.2; /* Adjust line spacing */
}
.container {
text-align: center;
max-width: 100%; /* Ensure the container does not exceed screen width */
}
.font-sample {
margin: 20px 0;
font-size: 10vw; /* Use relative units for font size */
}
.helvetica { font-family: 'Helvetica', sans-serif; }
.arial { font-family: 'Arial', sans-serif; }
.montserrat { font-family: 'Montserrat', sans-serif; }
.emoticons {
font-size: 8vw; /* Use relative units for emoticons */
}
.background {
position: absolute;
background-size: cover; /* Ensures the image fills the div */
background-repeat: no-repeat;
z-index: -1;
}
.background-top-left {
top: 0;
left: 0;
width: 400px;
height: 400px;
background-image: url('img/bg-top-left.png');
}
.background-top-right {
top: 0;
right: 0;
width: 800px;
height: 800px;
background-image: url('img/bg-top-right.png');
}
.background-bottom-left {
bottom: 0;
left: 0;
width: 800px;
height: 1000px;
background-image: url('img/bg-bottom-left.png');
}
.background-bottom-right {
bottom: 0;
right: 0;
width: 400px;
height: 400px;
background-image: url('img/bg-bottom-right.png');
}
.logo-main {
max-width: 300px;
}
.main-message {
display: flex;
align-items: center;
justify-content: center;
background-color: #f04e3e; /* Use the red color from the image */
color: white; /* White text color */
font-size: 18px; /* Adjust font size as needed */
font-weight: bold;
border-radius: 30px; /* Rounded corners */
padding: 15px 30px; /* Padding for the container */
width: fit-content; /* Adjust width based on content */
margin: 20px auto; /* Center the container on the page */
text-align: center; /* Center align text */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for better appearance */
}