*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow: hidden;
}

body {
    background: #110515;
	height: 100svh;
    overflow: hidden;
}

.circle{
    position: fixed;
    bottom: 0;
    pointer-events: none;
    width: 20px;
    aspect-ratio: 1/1;
    background: rgb(249, 206, 247);
    box-shadow: 0 0 10px rgb(230, 0, 255), 0 0 20px rgb(218, 27, 221),0 0 30px rgb(216, 34, 244),0 0 40px rgb(209, 110, 228),0 0 50px;
    border-radius: 30%;
    animation: animate 5s linear forwards;
}

@keyframes animate{
    0%{
        transform: translateY(0) rotate(-25deg);
        opacity: 1;
    }
    50%{
        opacity: 1;
    }
    100%{
        transform: translateY(-100vh) rotate(25deg);
        opacity: 0;
    }
}

.circle::before{
    content: '';
    position: absolute;
    top: 100%;
    left: 25%;
    width: 50%;
    height: 100vh;
    opacity: 0.5;
}

h1{  
    margin: clamp(1.5rem, 6svh, 5rem) 0 0;
    padding: 0 1rem;
    text-align: center;
    font-size: clamp(1.3rem, 4.5vw, 2.2rem);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: whitesmoke;
}

.red{
    color: red;
    font-size: clamp(1.7rem, 6vw, 3rem);
}

img{
    margin-top:0;
    padding-top: 1rem;
    height: clamp(230px, 50svh, 500px);
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.buttons {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: clamp(3rem, 10svh, 6rem);
    transform: translateX(-50%);
    gap: clamp(2.5rem, 18vw, 12rem);
}

.btn{
    display: inline-block;
    min-width: clamp(100px, 26vw, 120px);
    margin: 4px 2px;
    padding: 0.5rem 1rem;
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    outline: none;
    border: none;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    background-color: rgb(245, 116, 142);
    z-index: 1000;
}

#yes{
    background-color: rgb(237, 16, 64);
}

#no:hover span,
#no.is-peeking span {
    display:none
}

#no:hover:before,
#no.is-peeking:before {
    content:"Uff, You Girls 😑";
}

body.noo {
    background-image: linear-gradient(0.25turn, #100716, #0e031f, #031d17,#250212, #181802);
}

.watermark {
    color: rgb(243, 214, 214);
}

a{
    text-decoration: none;
    color: rgb(243, 214, 214);
}