@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
*, *::before, *::after {
padding: 0;
margin: 0;
box-sizing: border-box;
-ms-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
}
html, body {
height: 100%;
filter: brightness(90%)
}
body {
margin: 0;
line-height: 1;
font-family: 'Montserrat', sans-serif;
background: transparent;
}
.bold {
font-weight: 700;
}
.flex-item:nth-child(2n) {
box-sizing: border-box;
margin: 0 75px;
margin-top: 0px;
}
#spawn-select {
height: 100%;
padding: 0;
margin: 0;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items: center;
justify-content: center;
}
.select-block {
width: 330px;
height: 500px;
background: #000;
position: relative;
z-index: 2;
border-radius: 15px;
}
.home {
background-image: url(../images/1.png);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.last {
background-image: url(../images/2.png);
background-size: cover;
background-repeat: no-repeat;
}
.org {
background-image: url(../images/3.png);
background-size: cover;
background-position: 55%;
background-repeat: no-repeat;
}
.title-block {
background: linear-gradient(56deg, rgb(7, 232, 150, 0.6) 37%, rgb(7, 232, 150, 0.9) 56%);
padding: 20px 0;
position: absolute;
top: 40%;
left: 5%;
width: 90%;
transform: rotate(356deg);
}
.title-block .title-text > span {
display: block;
text-align: center;
color: rgb(0, 0, 0);
text-transform: uppercase;
}
.title-block .title-text > span:first-child {
font-size: 32px;
font-family: 'Russo One', sans-serif;
}
.button-block {
position: absolute;
bottom: 10%;
width: 100%;
text-align: center;
}
.button-block button {
font-family: 'Montserrat', sans-serif;
border: 0;
padding: 10px 55px;
color: rgb(12, 12, 12);
border-radius: 5px;
background: linear-gradient(56deg, rgb(7, 232, 150, 0.6) 37%, rgb(7, 232, 150, 0.9) 56%);
text-transform: uppercase;
-webkit-box-shadow: 0px 0px 17px 7px rgba(7, 232, 150, 0.5);
-moz-box-shadow: 0px 0px 17px 7px rgba(7, 232, 150, 0.5);
box-shadow: 0px 0px 17px 7px rgba(7, 232, 150, 0.5);
}
.button-block button:hover {
scale: 1.1;
animation: entry 1s linear 1;
transition: .5s all ease;
color: rgb(14, 13, 13);
background: linear-gradient(56deg, rgb(7, 232, 150, 0.6) 37%, rgb(7, 232, 150, 0.9) 56%);
-webkit-box-shadow: 0px 0px 17px 7px rgba(7, 232, 150, 0.5);
-moz-box-shadow: 0px 0px 17px 7px rgba(7, 232, 150, 0.5);
box-shadow: 0px 0px 17px 7px rgba(7, 232, 150, 0.5);
}
.button-block button[disabled]:active,
.button-block button[disabled]:hover,
.button-block button[disabled]{
cursor: not-allowed;
pointer-events: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
color: #ffffff;
}
.disabled {
filter: grayscale(100%);
}
#footer {
opacity: 0.5;
text-align: center;
position: fixed;
left: 0; bottom: 0;
padding: 5px;
color: #fff;
width: 100%;
}