File size: 3,234 Bytes
7a4db40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>Welcome Page</title>
    <style>
      /* CSS styles for the page */
      body {
        background-color: #F7F7F7;
        font-family: Arial, sans-serif;
      }

      #container {
        max-width: 80%;
        max-height: 60%;
        margin-top: 5rem;
        padding: 40px;
        box-shadow:12px 20px 5px rgb(13 14 10 / 10%);
        border: 3px solid rgb(57, 154, 193);
        
        /* transition: transform 0.3s ease; */
        background: linear-gradient(114.96deg,#823ddc 34.12%,rgb(12, 230, 158) 105.4%);
      }

       #image:hover {
        transform: translateY(-20px);
      } 

      h1 {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 20px;
        margin-left: -50rem;
        color: #333333;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
      }

      p {
        font-size: 1.7rem;
        font-family: cursive;
        text-align: center;
        margin-left: -47rem;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
      }
      ::-webkit-scrollbar{
        display: none;
      }

      button {
        display: block;
        margin: 0 auto;
        font-size: 1.2rem;
        margin-top: 4rem;
        padding: 10px 20px;
        margin-left: 5rem;
        background-color:rgb(222, 131, 20);
        color: #FFFFFF;
        border: none;
        border-radius: 5rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }

      button:hover {
        background-color:rgb(245, 199, 113);
      }
      .analysis{
            margin-left: 60rem;
            margin-top: -22rem; 
            border-radius: 5px;
            z-index: +1;
            box-shadow: 7px 7px 2px rgba(0, 0, 0, 0.1);
        } 
      .data{
            margin-left: 50rem;
            /* margin-bottom: rem; */
            margin-top: -5rem;
            border-radius: .7rem;
            box-shadow: 7px 7px 2px rgba(0, 0, 0, 0.1);
        }
    </style>
  </head>
  <body>
    <div id="container">
      <h1>Welcome to Our Website</h1>
      <p>Our advanced software will help you make sense of<br>
         your data quickly and easily. With powerful <br>
         algorithms and customizable dashboards, you'll<br>
         be able to see patterns and insights that<br>
         you never knew existed.</p>
      <button onclick="location.href='#'">Get Started</button>


    </div>
<!-- 
    <script>
      // JavaScript for the page
      console.log('Welcome to our website!');

      // Animate the container on scroll
      const container = document.querySelector('#container');
      window.addEventListener('scroll', () => {
        const containerTop = container.getBoundingClientRect().top;
        const containerBottom = container.getBoundingClientRect().bottom;
        const viewportHeight = window.innerHeight;
        if (containerTop < viewportHeight && containerBottom > 0) {
          container.style.opacity = 1;
          container.style.transform = 'translateY(0)';
        } else {
          container.style.opacity = 0;
          container.style.transform = 'translateY(20px)';
        }
      });
    </script> -->
  </body>
</html>