forked from StrafesNET/landing-page
209 lines
5.7 KiB
HTML
209 lines
5.7 KiB
HTML
<!-- The MIT license applies only to this file -->
|
|
|
|
<!-- MIT License
|
|
|
|
Permission is hereby granted, free of charge, to any
|
|
person obtaining a copy of this software and associated
|
|
documentation files (the "Software"), to deal in the
|
|
Software without restriction, including without
|
|
limitation the rights to use, copy, modify, merge,
|
|
publish, distribute, sublicense, and/or sell copies of
|
|
the Software, and to permit persons to whom the Software
|
|
is furnished to do so, subject to the following
|
|
conditions:
|
|
|
|
The above copyright notice and this permission notice
|
|
shall be included in all copies or substantial portions
|
|
of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
|
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
|
|
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
|
|
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
DEALINGS IN THE SOFTWARE.
|
|
|
|
-->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>StrafesNET</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
|
|
body {
|
|
color: white;
|
|
overflow: hidden;
|
|
height: 100vh;
|
|
}
|
|
|
|
.video-container {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
z-index: -100;
|
|
}
|
|
|
|
#video-background {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
min-width: 100%;
|
|
min-height: 100%;
|
|
width: auto;
|
|
height: auto;
|
|
transform: translateX(-50%) translateY(-50%);
|
|
filter: blur(8px) brightness(40%);
|
|
}
|
|
|
|
.overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: #00000080;
|
|
z-index: -99;
|
|
}
|
|
|
|
.content {
|
|
position: relative;
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
padding: 0 20px;
|
|
z-index: 1;
|
|
}
|
|
|
|
.logo-container {
|
|
width: 600px;
|
|
max-width: 80vw;
|
|
margin-bottom: 40px;
|
|
filter: drop-shadow(0 0 10px #C0C0C0C0);
|
|
animation: pulse 2s infinite;
|
|
}
|
|
|
|
.logo {
|
|
width: 100%;
|
|
height: auto;
|
|
max-height: 300px;
|
|
object-fit: contain;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
transform: scale(1);
|
|
}
|
|
50% {
|
|
transform: scale(1.05);
|
|
}
|
|
100% {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
.links {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 15px;
|
|
margin-bottom: 40px;
|
|
width: 100%;
|
|
max-width: 500px;
|
|
}
|
|
|
|
.link {
|
|
padding: 12px 0;
|
|
background: #00000080;
|
|
color: #C0C0C0;
|
|
text-decoration: none;
|
|
border: 2px solid #C0C0C0;
|
|
border-radius: 4px;
|
|
font-weight: bold;
|
|
transition: all 0.3s ease;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
}
|
|
|
|
.link:hover {
|
|
background: #C0C0C040;
|
|
transform: translateY(-3px);
|
|
box-shadow: 0 10px 20px #00000040;
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
padding: 20px;
|
|
background: #000000;
|
|
border-top: 1px solid #80808040;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.footer-links {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.footer-link {
|
|
color: #606060;
|
|
text-decoration: none;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
.footer-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Video Background with Blur -->
|
|
<div class="video-container">
|
|
<video autoplay muted loop id="video-background">
|
|
<source src="assets/bg.mp4" type="video/mp4">
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
</div>
|
|
<div class="overlay"></div>
|
|
|
|
<!-- Main Content -->
|
|
<div class="content">
|
|
<div class="logo-container">
|
|
<img src="assets/logo.png" alt="StrafesNET Logo" class="logo">
|
|
</div>
|
|
|
|
<div class="links">
|
|
<a href="#" class="link">Submit Map</a>
|
|
<a href="#" class="link">Browse Maps</a>
|
|
<a href="#" class="link">Leaderboards</a>
|
|
<a href="#" class="link">Tutorials</a>
|
|
<a href="https://wiki.strafes.net" class="link">Wiki</a>
|
|
<a href="#" class="link">Discord</a>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<footer class="footer">
|
|
<p>©2025 StrafesNET. All rights reserved.</p>
|
|
<div class="footer-links">
|
|
<a href="https://strafesnet-public.s3.us-east-1.amazonaws.com/LEGAL-20250307/Privacy-Policy.pdf" class="footer-link">Privacy Policy</a>
|
|
<a href="https://strafesnet-public.s3.us-east-1.amazonaws.com/LEGAL-20250307/Terms-of-Service.pdf" class="footer-link">Terms of Service</a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|