File size: 3,359 Bytes
04e4cb9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Resume Parser</title>
    <!-- Font Awesome for icons -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
    <style>

        body {

            font-family: 'Arial', sans-serif;

            margin: 0;

            padding: 0;

            background: linear-gradient(135deg, #a0c4ff, #b9fbc0); /* Soft gradient background */

            background-size: cover; /* Cover the entire viewport */

            color: #333; /* Darker text for readability */

            text-align: center;

            overflow-x: hidden;

        }

        .container {

            max-width: 900px;

            margin: 50px auto;

            padding: 30px;

            background-color: #ffffff; /* White background for the content area */

            border-radius: 10px; /* Rounded corners */

            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */

            transition: box-shadow 0.3s ease-in-out; /* Smooth transition for shadow */

        }

        .container:hover {

            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */

        }

        h1 {

            color: #333; /* Darker color for the heading */

            margin-bottom: 20px; /* Spacing below heading */

        }

        p {

            line-height: 1.6; /* Increased line height for readability */

            color: #666; /* Slightly lighter text color for paragraphs */

            margin-bottom: 30px; /* Spacing below paragraph */

        }

        .cta-button {

            display: inline-block;

            padding: 12px 24px;

            background-color: #4caf50; /* Green button background color */

            color: #ffffff; /* White text color */

            border: none;

            border-radius: 8px; /* Rounded corners for the button */

            cursor: pointer;

            text-decoration: none;

            font-size: 16px; /* Font size for the button */

            transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Smooth transition effects */

        }

        .cta-button:hover {

            background-color: #45a049; /* Darker green on hover */

            transform: scale(1.05); /* Slight scale effect on hover */

            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow on hover */

        }

        .cta-button:active {

            transform: scale(1); /* Ensures button scales back down on click */

            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Reduced shadow on click */

        }

        .icon {

            font-size: 40px; /* Size of icons */

            color: #4caf50; /* Green color for icons */

            margin-bottom: 20px; /* Spacing below icons */

        }

    </style>
</head>
<body>
    <div class="container">
        <i class="fas fa-briefcase icon"></i>
        <h1>CV Guru</h1>
        <p>Welcome to the Resume Parser! Effortlessly upload and analyze your resumes to gain actionable insights and enhance your job search.</p>
        <a class="cta-button" href="/v1/resumes/"><i class="fas fa-upload"></i> Get Started</a>
    </div>
</body>
</html>