-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (113 loc) · 3.51 KB
/
index.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
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
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Social Connect</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
/* General Body Styling */
body {
font-family: Arial, sans-serif;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #030101;
background-image: url("https://transparenttextures.com/patterns/xv.png");
background-size: 200px 200px; /* Adjust size as needed */
background-repeat: repeat;
color: white; /* White text color to contrast with background */
padding: 10px;
}
/* Glass Effect Container */
.container {
background: rgba(255, 255, 255, 0.15); /* More transparent background */
backdrop-filter: blur(15px); /* Glass blur effect */
border-radius: 15px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Darker shadow for depth */
border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
display: flex;
flex-direction: column;
align-items: center;
max-width: 600px;
width: 100%; /* Full width on small screens */
margin: auto;
}
/* Responsive Headings */
h1 {
text-align: center;
font-size: 2em;
margin-bottom: 20px;
}
/* Social Buttons */
.social-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 20px;
}
.social-btn {
padding: 15px 20px;
border: none;
border-radius: 10px;
font-size: 18px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease;
text-decoration: none;
background-color: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
color: #333;
}
.social-btn:hover {
transform: scale(1.1); /* Slight zoom effect */
}
.fab {
font-size: 20px;
}
/* Profile Picture Styling */
.profile-pic {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 20px;
border: 3px solid rgba(255, 255, 255, 0.6);
}
/* Responsive Adjustments */
@media (max-width: 600px) {
h1 {
font-size: 1.5em;
}
.social-btn {
padding: 10px;
font-size: 16px;
}
.profile-pic {
width: 80px;
height: 80px;
}
}
</style>
</head>
<body>
<div class="container">
<img src="zenitsu.jpg" alt="Benyamin's Profile Picture" class="profile-pic">
<h1>Benyamin</h1>
<p>AKA Benji, Benlwyn</p>
<div class="social-buttons">
<a href="https://twitter.com/ich_bin_beny" target="_blank" class="social-btn"><i class="fab fa-twitter"></i></a>
<a href="https://www.instagram.com/vatashiwabendesu" target="_blank" class="social-btn"><i class="fab fa-instagram"></i></a>
<a href="https://steamcommunity.com/id/kaminori_no_kokyu/" target="_blank" class="social-btn"><i class="fab fa-steam"></i></a>
<a href="https://discord.com/users/945652974741508167" target="_blank" class="social-btn"><i class="fab fa-discord"></i></a>
<a href="https://github.com/kaminarinokoky" target="_blank" class="social-btn"><i class="fab fa-github"></i></a>
</div>
</div>
</body>
</html>