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"> <meta name="keywords" content="sarimoko, sari, moko, sariboto, boto, cult, religion, rngesus, agnostic">
<style> <style>
body { body {
background-color: black; margin: 0;
padding: 0;
overflow: hidden;
} }
h1, h3, p { h1, h3, p {
color: white; color: white;
@ -21,14 +23,37 @@
height: auto; height: auto;
left: 50%; left: 50%;
top: 50%; top: 50%;
margin-left: -285px; /* margin-left: -285px;
margin-top: -190px; 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> </style>
</head> </head>
<body> <body>
<h1>The Cult</h1> <div class="container">
<h3>A sudo religion, all praise RNGesus!</h3> <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!"> <img src="https://www.nicepng.com/png/full/145-1454277_kappa-rngesus-png.png" alt="RNGesus NOT FOUND!">
</div>
</body> </body>
</html> </html>