-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (57 loc) · 1.06 KB
/
style.css
File metadata and controls
65 lines (57 loc) · 1.06 KB
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
html {
background-color: #004667;
overflow: hidden;
}
.title-container {
display: flex;
align-items: center;
margin: auto;
justify-content: center;
align-items: center;
text-align: center;
}
.title-image {
width: 100px;
height: 100px;
margin-right: 20px;
border-radius: 5px;
}
#title-text {
font-size: 50px;
color: white;
}
.container {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
min-height: 100vh;
}
#videoElement {
border-radius: 5px;
width: 80%; /* Increase from 50% to 80% */
max-width: 1200px;
height: 550px; /* Change from 100% to auto to maintain aspect ratio */
}
.link-container {
position: absolute;
top: 20%;
}
#link {
font-size: 1.5rem;
color: #000000;
text-decoration: none;
border: 2px solid #fff;
padding: 1rem 2rem;
border-radius: 5px;
transition: all 0.3s ease-in-out;
}
#play-button {
font-size: 1.5rem;
color: #000000;
text-decoration: none;
border: 2px solid #fff;
padding: 1rem 2rem;
border-radius: 5px;
transition: all 0.3s ease-in-out;
}