File size: 1,004 Bytes
6db4c27
b926fe6
6db4c27
 
 
 
 
 
 
 
9a0c4f1
6db4c27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b926fe6
6db4c27
 
 
 
 
1f91b00
 
 
 
 
 
 
 
 
 
 
6db4c27
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
/* Container styling */
#card {
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 24px;
    padding: 30px;
    max-width: 600px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

#card:hover {
    transform: translateY(-5px);
    border-color: #8A2BE2;
}

/* Image styling */
#logo-img img {
    width: 250px !important;
    height: auto !important;
    border-radius: 15px;
    margin: 0 auto;
}

/* Text styling */
.desc-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.1em;
}

h2 {
    color: #8A2BE2;
    margin-top: 15px !important;
    font-weight: 800 !important;
}

/* Custom button styling */
.custom-button {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-button:hover {
    transform: translateY(-2px);
}