-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (45 loc) · 1.16 KB
/
styles.css
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
/* Apply a Minecraft-like font and ensure full-screen background */
body {
margin: 0;
padding: 0;
font-family: 'Press Start 2P', sans-serif; /* Pixelated font */
background-image: url('A_seamless_Minecraft-style_dirt_block_texture.png');
background-size: cover;
background-repeat: repeat;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
/* Container styling for centering content */
.container {
text-align: center;
color: #fff;
}
/* Title styling to ensure visibility */
h1 {
font-size: 4rem;
margin-bottom: 20px;
color: #ffffff; /* White text */
text-shadow: 2px 2px 0px #000000; /* Black shadow for contrast */
}
/* Social buttons styling */
.social-buttons {
display: flex;
justify-content: center;
gap: 20px;
}
.btn {
background-color: #614d34; /* Minecraft-style button color */
padding: 15px 30px;
text-decoration: none;
color: white;
font-size: 1.5rem;
border-radius: 10px;
box-shadow: 3px 3px 0 #3d2e22;
transition: background-color 0.3s;
}
.btn:hover {
background-color: #7b6149; /* Darker hover effect */
}