32 lines
917 B
HTML
32 lines
917 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>The Arctic Circle</title>
|
|
<style>
|
|
body {
|
|
background: #1a1a1a;
|
|
color: #e0e0e0;
|
|
font-family: sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
}
|
|
.container { text-align: center; }
|
|
h1 { font-size: 3rem; margin-bottom: 10px; color: #00d4ff; }
|
|
p { font-size: 1.2rem; opacity: 0.8; }
|
|
a { color: #00d4ff; text-decoration: none; border: 1px solid #00d4ff; padding: 10px 20px; border-radius: 5px; transition: 0.3s; }
|
|
a:hover { background: #00d4ff; color: #1a1a1a; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>The Arctic Circle</h1>
|
|
<p>Homepage under development.</p>
|
|
<br>
|
|
<a href="/git">Access Gitea</a>
|
|
</div>
|
|
</body>
|
|
</html>
|