/* @import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); */
@font-face{
    font-family: 'futura-obl';
    src: url('fonts/Futura_Std_Heavy_Oblique.otf');
}
html {
    font-size: 100%;
    scrollbar-color: #fff #000;
}

/* SCROLLBAR */

/* Let's get this party started */

::-webkit-scrollbar {
    width: 10px;
}

/* Track */

::-webkit-scrollbar-track {
    background: #000;
    /* THIS IS IMPORTANT */
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #fff;
    /* border: 1px solid rgb(0,0,0); */
    border: 1px solid transparent;
    background-clip: content-box;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: 'futura-obl', sans-serif;
    background-color: #000;
}

#p5 {
    position: fixed;
    z-index: -1;
    left: 0px;
    top: 0px;
}

.container {
    position: absolute;
    top: 75%;
    left: 0px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.container div {
    font-size: 8rem;
}

img#title {
    width: 100%;
    max-width: 850px;
    height: auto;
}

#hysteric-container {
    position: fixed;
    top: 0px;
    left: 0px;
    /* background-color: #000; */
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.hysteric-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 70%;
    border: solid 3px #f00;
    border-radius: 100%;
    transform: rotate(5deg) translate(-50%, -50%);
    -webkit-transform: rotate(5deg) translate(-50%, -50%);
    -moz-transform: rotate(5deg) translate(-50%, -50%);
    -o-transform: rotate(5deg) translate(-50%, -50%);

    /* transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -o-transform: rotate(20deg); */
}
.hysteric-title{
    /* display: none; */
    position: fixed;
    text-align: center;
    padding: 0.5rem;
    /* background-color: #ff0; */
    font-size: 2rem;
    font-weight: bolder;
    color: #f00;
    width: 50%;
    max-width:40;
    /* width: -moz-min-content;
    width: -webkit-min-content;
    width: -o-min-content; */
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    /* text-decoration: underline #f00; */
    /* text-shadow: #000 2px 2px, #000 -2px -2px; */
}
.hysteric-title b{

    mix-blend-mode: difference;
    background-color: #fff;
}
.hysteric-title a {
    /* font-size: 4rem; */
    /* font-family: monospace; */
    color: #00f;
    /* background-color: #; */
}
.hysteric-title a:hover{
    background-color: #ff0;

}

.background{
    width: 100%;
    height: auto;
}
.background img{
    width: 100%;
    height: auto;
}
.hysteric_el_container {
    position: relative;
    float: right;
    /* background-color: aqua; */
    width: 33%;
    height: 175px;
    /* max-width: 300px;
    max-height: 400px; */
    /* text-align: center; */
    /* width: min-content;
    width: -moz-min-content;
    width: -webkit-min-content;
    width: -o-min-content;
    height: auto; */
    /* outline: solid 3px #0f0; */
    /* box-shadow: 0 0 0 3px black, 0 0 0 1px white inset; */
}

.hysteric-element {
    /* float: right; */
    text-align: center;
    font-size: 0.6rem;
    position: absolute;
    padding: 0.6rem;
    margin: 0.7rem;
    border: solid 3px #000;
    background-color: #ff0;
    border-radius: 50px;
    width: min-content;
    width: -moz-min-content;
    width: -webkit-min-content;
    width: -o-min-content;
    height: auto;
    box-shadow: #00f 5px 5px;
}

.hysteric-element:hover {
    box-shadow: #00f 2px 2px;
    border-radius: 0px;
}


@media only screen and (max-device-width: 900px) {
    html {
        font-size: 60%;
    }
}