html, body {
 height: 100%; /* nécessaire pour que body puisse prendre toute la hauteur */
 margin: 0; /* enlever les marges par défaut */
}

body {
 display: flex;
 justify-content: center; /* centre horizontalement */
 align-items: center; /* centre verticalement */
 background: black;
}

/* CENTRAGE DU SITE ===============================================*/
#zone-de-travail{
	margin-top	: 	-596px;
	margin-left	: 	auto;
	margin-right:	auto;
	width		:	1640px; 
	height		:	580px;
	font-size	:	0.95em; 
	font-family	:	'Comic Sans MS';
	overflow-x: 	hidden; 
	overflow-y:		hidden;
}

a:link{ 
 text-decoration:none; 
}

.fullpage .main-header {
  min-width: 0;
}

.fullpage .mobile-action-button {
  display: block;
  width: 48%;
  float: left;
  text-align: center;
  margin: 0 4% 10px 0;
}

.fullpage .mobile-action-button:nth-child(even) {
  margin-right: 0;
}

.fullpage .jump-view {
  width: 48%;
  margin: 0 4% 10px 0;
  float: left;
}

.fullpage .jump-view:nth-child(even) {
  margin-right: 0;
}

.fullpage .jump-view:nth-child(3) {
  display: none;
}

.fullpage .jump-label {
  display: block;
}

.oldie-header {
  display: none;
  padding: 5px;
  background: var(--cp-color-20);
  color: var(--cp-color-1);
}

html.oldie .oldie-header {
  display: block;
}

html.oldie .main-header {
  display: none;
}

#result-iframe-wrap {
  flex: 1 1 auto;
  height: 100%;
  position: relative;
  overflow: auto;
}

html.oldie #result-iframe-wrap {
  height: 100%;
  height: calc(100% - 32px);
}

#result {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 550px) {
  @supports (height: 100svh) {
    #result {
      height: calc(100svh - var(--cp-header-height-small));
    }
  }
}

#pen-ad {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: fit-content;
z-index: 1;
}

		
		