-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
52 lines (42 loc) · 823 Bytes
/
estilo.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
@charset "utf8";
body {
background-color: black;
}
.titulo {
color: aliceblue;
margin: 20 auto;
margin-left: 25%;
font-size: 50px;
text-align: center;
border-radius: 20px;
background-color: blue;
width: 50%;
}
.texto {
background-color: #00ffff;
border-radius: 20px;
text-align: center;
font-size: 30px;
margin: 0 auto;
width: 95%;
}
.video-container {
display: flex; /* Enable flexbox layout */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically (optional) */
}
.video-reponcivo {
width: 50%;
margin: 0;
aspect-ratio: 16 / 9; /* Definir a proporção de aspecto (por exemplo, 16:9 para YouTube) */
}
.video1 {
width: 47%;
height: 400px;
margin-left: 25%;
}
aside iframe {
border: none;
height: 900px;
width: 100%;
}