<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&amp;display=swap');

body {
	color: white;
	background: black;
	font-family: "Nunito Sans", sans-serif;
}

.sex {
    border: solid 2px white;
    border-radius: 8px;
    position: absolute;
    width: 280px;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -200px;
    padding: 10px;
    cursor: default;
}

a {
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
    display: inline-block;
}

a:hover {
    transform: translateY(-5px);
}


#play {
    font-size: 40px;
    cursor: pointer;
}

p {

}

.hidden {
    display: none;
}</pre></body></html>