-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.html
79 lines (74 loc) · 2.12 KB
/
start.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PitchPulse</title>
<style>
body {
margin: 0;
padding: 0;
font-family: "Arial", sans-serif;
background: linear-gradient(to bottom, #764c7a, #255ca8);
color: #ffffff;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.button-container {
display: flex;
justify-content: center;
margin-top: 20px;
}
.button {
display: inline-block;
padding: 40px 80px; /* Further increased button size */
font-size: 1.5em; /* Increased font size */
text-decoration: none;
color: #ffffff;
background: linear-gradient(
to bottom right,
#ff6b6b,
#ff9a9e
); /* Diagonal gradient */
border: none;
border-radius: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Added subtle box shadow */
transition: background 0.3s, color 0.3s, transform 0.3s;
margin: 10px;
margin-right: 30px;
margin-left: 30px;
cursor: pointer;
outline: none;
}
.logo {
margin-bottom: 20px;
}
.logo img {
width: 100%;
height: 100%;
object-fit: contain; /* Maintain aspect ratio while containing within the dimensions */
border-radius: 50%; /* Optional: Apply a border-radius for a circular shape */
}
.button:hover {
background: linear-gradient(to bottom right, #ff9a9e, #ff6b6b);
color: #ffffff;
transform: scale(
1.05
); /* Added scale on hover for a subtle interaction */
}
</style>
</head>
<body>
<div class="logo">
<img src="images/logo-clear(1).png" alt="Site Logo" />
</div>
<div class="button-container">
<a href="#" class="button">Start-up</a>
<a href="#" class="button">Investor</a>
</div>
</body>
</html>