-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
102 lines (84 loc) · 1.53 KB
/
index.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
95
96
97
98
99
100
body {
font-family: Arial, sans-serif;
background-color: #c0adad;
}
/* Styles for the Bank-section container */
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-image: url(Images/Background.gif);
background-repeat: no-repeat;
background-size: 100% 100%;
}
.Bank-section {
display: flex;
justify-content: space-around;
align-items: center;
width: 95%;
/* background-color: #fff; */
/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
padding: 30px;
gap: 30px;
}
/* Styles for the left side of the Bank-section */
.left {
flex: 1;
text-align: center;
}
.left h1 {
font-size: 2.5rem;
margin-bottom: 30px;
color: goldenrod;
}
.left p {
font-size: 1.2rem;
color: wheat;
margin-bottom: 30px;
}
button {
border: none;
background-color: #ae321ff2;
color: #fff;
font-size: 1.2rem;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
button a{
text-decoration: none;
color: #cdc2c2;
}
button:hover {
background-color: rgba(162, 48, 48, 0.927);
}
/* Styles for the right side of the Bank-section */
.right {
flex: 1;
}
.left-img img {
width: 85%;
height: auto;
}
/* Media query for smaller screens */
@media screen and (max-width: 768px) {
.Bank-section {
flex-direction: column;
width: 90%;
}
.left, .right {
flex: auto;
width: 100%;
}
.left p {
font-size: 1rem;
}
.left h1 {
font-size: 2rem;
}
.left-img img {
margin-top: 30px;
}
}