
:root {
    --background-color: #000000;
    --element-color: #202020;
    --text-color: #ece2ce;
    --primary-color: rgb(228, 119, 160);
    --secondary-color: #f7d065;
    --border-radius: 5px;
}

body, html {
    background-color: var(--background-color);
    margin: 0px;
}
body *, html * {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: var(--text-color);
}

p {
    margin: 0px;
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.cont {
    padding: 20px;
    background-color: var(--element-color);
    border-radius: var(--border-radius);
}

.highlight {
    border: 2px solid transparent;
    border-image: linear-gradient(
        0.476turn, 
        var(--secondary-color), 
        var(--primary-color), 
        #0000, #0000, #0000, #0000
    ) 1;
}

.full_w {
    width: 1200px;
    max-width: 80%;
}


.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

.center_element_conteiner {
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
}

input[type=checkbox].toggle_hide {
    display: none;
}
.hideable {
    display: none;
}
input[type=checkbox].toggle_hide:checked + .hideable {
    display: block;
}

.top_sitters {
    position: absolute;
    width: 70px;
    top: -45px;
    right: 10%;
}



#menu:checked + .menu_buttons {
    display: block;
}
#menu + .menu_buttons {
    display: none;
}
.menu_cont {
    position: fixed;
    z-index: 10;
    left: 0px;
    top: 0px;
    background-color: var(--element-color);
    border-bottom-right-radius: var(--border-radius);
    box-shadow: 0 0 10px #000;
    padding: 5px;

    background-image: 
        linear-gradient(var(--primary-color), #0000),
        linear-gradient(#0000, var(--primary-color))
    ;
    background-size: 2px 100%;
    background-position: -2px 0, 100% 0;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

button {
    background-color: #0000;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: large;
} button:active {
    transition-duration: .5s;
    background-color: #000F;
}

a {
    text-decoration: none;
}


#whack_a_planet_points {
    position: fixed;
    z-index: 10;
    right: 0px;
    top: 0px;
    background-color: var(--element-color);
    border-bottom-left-radius: var(--border-radius);
    padding: 10px;
    color: var(--secondary-color);

    background-image: 
        linear-gradient(#0000, var(--primary-color)),
        linear-gradient(var(--primary-color), #0000)
    ;
    background-size: 2px 100%;
    background-position: 0 0, 110% 0;
    background-repeat: no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.pic_cont {
    position: relative;
    height: 220px;
    min-height: 220px;
    margin-left: auto;
}

.pic_cont .pic {
    position: absolute;
    border-radius: var(--border-radius);
}
img#bambi_on_ice {
    height: 180px;
    top: 0px;
    left: 50px;
}
img#stitch {
    height: 120px;
    bottom: 0px;
    left: 0px;
}


.no_touch {
    pointer-events: none;
}

.begone {
    visibility: hidden;
}
