Update 'www/index.html'

This commit is contained in:
Sarimoko 2022-02-22 08:04:35 +00:00
parent 7a93c32c76
commit ffbb22bf86
1 changed files with 30 additions and 5 deletions

View File

@ -9,7 +9,9 @@
<meta name="keywords" content="sarimoko, sari, moko, sariboto, boto, cult, religion, rngesus, agnostic">
<style>
body {
background-color: black;
margin: 0;
padding: 0;
overflow: hidden;
}
h1, h3, p {
color: white;
@ -21,14 +23,37 @@
height: auto;
left: 50%;
top: 50%;
margin-left: -285px;
margin-top: -190px;
/* margin-left: -285px;
margin-top: -190px; */
}
.container {
background: linear-gradient(225deg, #ffabab, #ffdaab, #ddffab, #abe4ff, #d9abff);
background-size: 300% 300%;
box-sizing: border-box;
display: table;
height: 100vh;
margin: 0;
position: relative;
width: 100vw;
-webkit-animation: Rainbow 25s ease infinite;
-moz-animation: Rainbow 25s ease infinite;
animation: Rainbow 25s ease infinite;
}
@-webkit-keyframes Rainbow {
0% {
background-position: 94% 0%; }
50% {
background-position: 7% 100%; }
100% {
background-position: 94% 0%; } }
</style>
</head>
<body>
<h1>The Cult</h1>
<h3>A sudo religion, all praise RNGesus!</h3>
<div class="container">
<h1>The Cult</h1>
<h3>A sudo religion, all praise RNGesus!</h3>
<img src="https://www.nicepng.com/png/full/145-1454277_kappa-rngesus-png.png" alt="RNGesus NOT FOUND!">
</div>
</body>
</html>