forked from EMMY-HENZ-TECH/-Virus-Watch-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
93 lines (82 loc) · 1.55 KB
/
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
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
/* Reset */
body, h1, p {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
/* Body */
body {
background-color: #000;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
}
/* Header Section */
header {
width: 100%;
text-align: center;
padding: 70px 20px;
background: url('https://source.unsplash.com/1600x900/?carnival,concert') no-repeat center center/cover;
position: relative;
}
header .overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
}
header h1 {
font-size: 3.5rem;
font-weight: 800;
z-index: 1;
position: relative;
}
header h1 span {
color: #ffcc00;
}
header p {
font-size: 1.5rem;
margin-top: 15px;
z-index: 1;
position: relative;
}
/* TV Section */
.tv-section {
display: flex;
flex-direction: column;
align-items: center;
margin: 50px 0;
width: 100%;
}
.tv {
width: 85%;
max-width: 1000px;
margin-bottom: 40px;
border: 10px solid #333;
border-radius: 15px;
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9);
position: relative;
overflow: hidden;
transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.tv iframe {
width: 100%;
height: 560px;
border: none;
}
.tv:hover {
transform: scale(1.05);
box-shadow: 0 20px 50px rgba(0, 0, 0, 1);
}
/* Footer */
footer {
text-align: center;
padding: 20px 0;
background-color: #111;
width: 100%;
font-size: 1rem;
}