html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body, html {
height: 100%;
width: 100%;
}
body {
display: flex;
justify-content: center;
text-align: center;
flex-direction: column;
font-family: sans-serif;
background-color: #100d1e;
}
.game {
font-size: 100px;
}
.nightly {
background-color: #5b285f;
color: #cd79cd;
}
.box {
margin: 5vw;
flex-wrap: center;
}
.heading {
font-size: 100px;
color: #7991cd;
}
.body {
font-size: 40px;
color: #7991cd;
}
.footer {
position: sticky;
top: 95%;
color: #58678e;
}
a {
font-size: 40px;
color: #b6acd8;
text-decoration: none;
}
a:hover {
color: #726899;
}
.goodyeet {
color: #7991cd;
background-color: #344b85;
border-width: 3px;
}
.badyeet {
color: #cd7984;
background-color: #752020;
border-width: 3px;
}
@media (min-aspect-ratio: 1/1) {
.button {
width: 15vw;
height: 8vw;
font-size: 3vw;
}
}
@media (max-aspect-ratio: 1/1) {
.button {
width: 50vw;
height: 20vw;
font-size: 10vw;
}
}
.flex-container {
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
}
.game-button {
user-select: none;
position: relative;
width: 40vh;
}
.game-logo {
width: 40vh;
opacity: 0.5;
}
.game-button:hover > .game-logo {
opacity: 1;
}
.game-title {
position: absolute;
color: rgb(183, 16, 206);
font-size: 10vh;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
z-index: 1;
transition: 0.2s;
}
.game-button:hover > .game-title {
font-size: 12vh;
}
.game-description {
display: none;
position: fixed;
left: 50%;
top: 80%;
transform: translate(-50%, 0);
}
.game-button:hover > .game-description {
display: inline;
}
.title {
font-size: 100px;
color: rgb(183, 16, 206);
position: fixed;
left: 50%;
top: 10%;
transform: translate(-50%, 0);
}
.switcher {
text-align: center;
background-color: pink;
min-width: 300px;
min-height: 100px;
position: fixed;
right: -100px;
top: 0px;
transform: rotate(45deg);
}
.switcher-text {
position: relative;
color: black;
font-size: 24px;
top: 25px;
}
.discord {
text-align: center;
background-color: pink;
min-width: 300px;
min-height: 100px;
position: fixed;
left: -100px;
top: 0px;
transform: rotate(-45deg);
}
.discord-text {
position: relative;
color: black;
font-size: 24px;
top: 40px;
}