diff --git a/convert.html b/convert.html
index 8b04665..d06ebfe 100644
--- a/convert.html
+++ b/convert.html
@@ -1,157 +1,230 @@
-
-
-
-
-
-
-
-
-
Web-based Media Conversion Tools
-
-
Transcodes WebM files to MP4 files with a fixed 1280x720 resolution. (very slow!)
-
This tool performs the following action in your browser: fmpeg -i input.webm -vf scale=1280:720 output.mp4
-
-
-
-
Remuxes MKV files to MP4 files without transcoding.
fmpeg -i INPUTFILE -vcodec copy -acodec copy output.mp4
-
-
-
-
-
Remuxes WebM files to MP4 files without transcoding (attempts to force high resolutions, also)
-
-
-
-
Remuxes WebM to Audio-only files (opus or wav)
-
-
-
-
-
-
-
+
+ h1 {
+ margin-top: 1em;
+ margin-bottom: 1em;
+ padding: 10px;
+ }
+
+ .card {
+ margin: 10px;
+ box-shadow: 0 4px 8px 0 rgb(0 0 0 / 10%);
+ background-color: #ddd;
+ color: black;
+ margin-bottom: 1.5em;
+ }
+
+ .card>div {
+ padding: 10px;
+ }
+
+ .card h2 {
+ font-size: 1.5em;
+ padding: 10px;
+ background-color: #457b9d;
+ color: white;
+ border-bottom: 2px solid #3b6a87;
+ }
+
+ small {
+ font-style: italic;
+ display: block;
+ margin-left: 1em;
+ }
+
+ span.warning {
+ color: rgb(212, 191, 0);
+ }
+
+ input {
+ padding: 10px;
+ }
+
+ video {
+ max-width: 640px;
+ max-height: 360px;
+ padding: 20px;
+ }
+
+ audio {
+ max-width: 640px;
+ max-height: 360px;
+ padding: 20px;
+ }
+
+ div#processing {
+ display: none;
+ justify-content: center;
+ place-items: center;
+ position: absolute;
+ inset: 0;
+ font-size: 1.5em;
+ font-weight: bold;
+ background: #141926;
+ flex-direction: column;
+ }
+
+
+
+
+
+
+
+
Web-based Media Conversion Tools
+
+
+
WebM to MP4 (fixed 1280x720 resolution) (very slow!)
+
+ The same as: fmpeg -i input.webm -vf scale=1280:720 output.mp4
+
+
+
+
+
MKV to MP4 (no transcoding)
+
+ The same as: fmpeg -i INPUTFILE -vcodec copy -acodec copy output.mp4
+
+
+
+
+
WebM MP4 files (no transcoding, attempts to force high resolutions)
+
+
+
+
+
+
WebM to Audio-only files (opus or wav)
+
+
+
+
+
+
+
+
+
\ No newline at end of file