/*------------------------------------*\
  Styles cdpx
\*------------------------------------*/

body
{
	background-color: #F3EEEB;
	font-family: "Courier New", Courier, mono;
}

.center-resp {
	position: absolute;
	top: 25%;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-width: 87%;
	max-height: 87%;
	filter: grayscale(60%);
	z-index: 2;
}

.logo {
	position: absolute;
	top: -40px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-width: 250px;
	z-index: 3;
}

#overlay-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(noise.webp);
  opacity: 0.5;
  z-index: 1;
}

@media only screen and (max-width : 768px) {
body {overflow-x: hidden;}
.center-resp { max-width: 155%; margin: auto; }
	}
@media only screen and (max-height : 500px) {
body {overflow: hidden;}
.center-resp { opacity: 0.25; }
	}	
	
/*------------------------------------*\
  overlay cdpx
\*------------------------------------*/

#right-click-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 36, 65, 0.87);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.5s ease;
	-webkit-backdrop-filter: blur(10px);
  	backdrop-filter: blur(10px);
}

.noise-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdpx.pm/assets/noise.gif');
    opacity: 0.06;
    pointer-events: none;
	z-index: 1;
}

.overlay-hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-visible {
    opacity: 1;
    pointer-events: all;
}

.overlay-content {
    text-align: center;
	font-family: "Courier New", Courier, mono;
	font-weight: 400;
	word-spacing: -3px;
    max-width: 600px;
    padding: 30px;
	z-index: 2;
	opacity: 0;
    transform: translateY(25px);
    transition: opacity 1s ease, transform 1s ease;
	transition-delay: 0.25s;
}

.overlay-visible .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content img {
    max-width: 50px;
    margin-bottom: 10px;
	padding-left: 10px;
}

.overlay-content h5 {
    font-size: 1.1em;
	line-height: 1.2em;
	color: white;
    margin-bottom: 15px;
}

.overlay-content p {
    font-size: 0.9em;
    line-height: 1.4em;
	color: #c4c4c4;
	padding-top: 0px;
}

.overlay-content sup {
	font-size: 50%;
}