-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (86 loc) · 2.44 KB
/
Copy pathindex.html
File metadata and controls
95 lines (86 loc) · 2.44 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aita</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: white;
padding: 20px;
}
.container {
text-align: center;
max-width: 400px;
width: 100%;
}
.logo {
width: 150px;
height: 150px;
margin: 0 auto 30px;
background: white;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
justify-content: center;
}
.logo img {
width: 100%;
height: 100%;
object-fit: contain;
border-radius: 10px;
}
.hello {
font-family: 'Dancing Script', cursive;
font-size: 140px;
color: #333;
font-weight: 700;
margin-bottom: 10px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.aita {
font-family: 'Roboto', sans-serif;
font-size: 158px;
color: #333;
font-weight: 300;
letter-spacing: 2px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 480px) {
.logo {
width: 120px;
height: 120px;
}
.hello {
font-size: 140px;
}
.aita {
font-size: 158px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<img src="planted by steams of water no background.png" alt="Aita Logo">
</div>
<div class="hello">hello</div>
<div class="aita">Aita</div>
</div>
</body>
</html>