-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (46 loc) · 949 Bytes
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
color: #fff;
}
body{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
font-family: sans-serif;
background-color: #333;
background-image: linear-gradient( 41deg, #fd1148, #4988ff );
}
.container{
display: flex;
flex-direction: column;
gap: 5px;
background-color: rgba(204, 204,204, 0.5);
padding: 15px 25px;
border-radius: 10px;
user-select: none;
cursor: pointer;
font-weight: 500;
transition: all 0.5s;
margin-bottom: 25px;
}
.container:hover {
box-shadow: 0px 26px 70px 1px rgba(0, 0, 0, 0.4);
transform: scale(1.001);
}
.container h1 {
font-weight: 500;
}
.copyright {
position: absolute;
bottom: 50px;
}
@media (max-width: 460px) {
.container h1 {
font-size: 22px;
}
}