initial commit

This commit is contained in:
Sawyer Andrews 2025-08-28 19:41:00 -05:00
commit 128a64a9c0
Signed by: sawyer
GPG key ID: D4B437630877389B
3 changed files with 141 additions and 0 deletions

38
index.html Normal file
View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>sawyer.systems</title>
<style>
body {
background-color: #131313;
font-family: sans-serif;
color: #f1f1f1;
max-width:100%;
margin: 0;
}
video {
padding-top: 10px;
}
.horizontal-center {
align-items: center;
display: flex;
justify-content: center;
flex-direction: column;
}
</style>
</head>
<body>
<div class="horizontal-center">
<video id="video" autoplay controls loop playsinline>
<source src="If_You_See_Me_Out_In_Quahog_(Remastered)_-_Lasica.webm" type="video/webm">
</video>
<script src="script.js"></script>
<p>check the page title ;)</p>
</div>
</body>
</html>