-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (48 loc) · 1002 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
51
52
53
54
55
56
57
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Amatic SC', sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap');
.main {
width: 100%;
height: 100vh;
background: url('./1098163.webp') center center;
background-size: cover;
}
.overlay {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
/* background-color: rgba(234, 225, 225, 0.941); */
}
.title {
margin-top: 10px;
color: #5f103b;
text-align: center;
font-size: 2.5rem;
}
.col {
margin-top: 20px;
width: 90%;
display: flex;
justify-content: center;
color: #5f103b;
}
.col div {
width: 250px;
text-align: center;
}
input {
width: 50%;
background-color: rgba(255, 255, 255, 0.9);
border-color: transparent;
border-radius: 5px;
height: 50px;
text-align: center;
font-size: 30px;
}