File size: 738 Bytes
f98d0eb |
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 |
body {
font-family: Arial, sans-serif;
background-color: #f6f2f2;
text-align: center;
margin: 0;
padding: 20px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 20px;
}
.video-container {
display: flex;
flex-direction: column;
align-items: center;
}
button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
border-radius: 5px;
margin-top: 10px;
}
button:hover {
background-color: #0056b3;
}
.file-upload {
margin-top: 20px;
}
.output {
margin-top: 20px;
font-size: 1.2em;
color: #333;
}
|