-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_main.css
58 lines (52 loc) · 1.04 KB
/
style_main.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
body {
font-family: 'Arial', sans-serif;
background-image: url('main-background.png');
background-size: cover;
background-position: center;
color: #333;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100vh;
}
.container {
background: rgba(255, 255, 255, 0.9);
padding: 40px;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
text-align: center;
}
.logo {
width: 400px;
max-width: 90%;
margin-bottom: 40px;
}
h1 {
font-size: 28px;
color: #2c3e50;
margin-bottom: 40px;
}
.buttons {
display: flex;
flex-direction: column;
align-items: center;
}
.button {
background-color: #3498db;
color: white;
padding: 15px 30px;
text-decoration: none;
border-radius: 8px;
margin: 10px 0;
font-size: 18px;
transition: background-color 0.3s;
width: 100%;
max-width: 300px;
text-align: center;
}
.button:hover {
background-color: #2980b9;
}