@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');

body {
    color: white;
    background-image: url(https://w.wallhaven.cc/full/7j/wallhaven-7j3lve.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    margin:0;
	display:flex;
	height:100vh;
	align-items:center;
    font-family: 'TikTok Sans';
}

#box {
    width: 45vw;
    margin: 0 auto;
    overflow: auto;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    border-color: white;
    border-width: 5px;
    border-style: solid;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.3px);
    -webkit-backdrop-filter: blur(7.3px);
    padding-bottom: 15px;
}

h1 {
    text-align: center;
    font-size: 38px;
}

p {
    text-align: center;
    font-size: 26px;
}

button {
    display: block;
    margin: 5px auto 0 auto;
    background-color: rgb(0, 0, 0);
    color: white;
    outline: none;
    border-style: none;
    padding: 15px;
    padding-left: 45px;
    padding-right: 45px;
    border-radius: 8px;
    transition: all 0.2s linear;
    font-size: 18px;
    font-family: 'TikTok Sans';
}

button:hover {
    background-color: white;
    color: black;
    transform:scale(1.07)
}

mark {
    background-color: rgba(0, 0, 0, 0.356);
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 5px;
}

.profile {
    display: block;
    margin: 0 auto;
    width: 200px;
    border-radius: 75px;
    margin-top: 25px;
    cursor: pointer;
}

#incel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.712);
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    backdrop-filter: blur(10.3px);
    -webkit-backdrop-filter: blur(10.3px);
    transition: opacity 0.5s ease;
}

#incel.fadeout {
    opacity: 0;
    pointer-events: none;
}

h2 {
    font-size: 45px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    text-align: center;
}

#asdasdas {
    background-color: rgba(105, 105, 105, 0.5);
    padding: 5px;
    padding-left: 53px;
    padding-right: 55px;
    border-radius: 15px;
    transition: all 0.2s ease-in-out;
    border-width: 3px;
    border-style: solid;
    border-color: rgba(105, 105, 105, 0.5);
}

#asdasdas:hover {
    border-color: white;
}

.suicidal {
    display: block;
    margin: 35px auto 0 auto;
    -webkit-appearance: none;
    width: 85%;
    height: 15px;
    border-radius: 5px;  
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    transition-property: opacity, background;
    transition-timing-function: ease;
}

.suicidal::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.suicidal:active::-webkit-slider-thumb {
    transform: scale(1.1);
    background: #222;
}

.suicidal::-moz-range-thumb { /* firefox is so weird */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #000000;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.suicidal:active::-moz-range-thumb {
    transform: scale(1.1);
    background: #222;
}

label {
    text-align: center;
    margin: 0;
    display: flex;
}

.profile.dancing1 {
    transform: scaleX(1.1);
}

.profile.dancing2 {
    transform: scaleY(1.1);
}