/* gioco.com by max giorgetti © 1996 > 2024 */


body  {
  line-height: 1.5em;
  margin: 0;
  background-color: #eee;
  font-family: "Arial", sans-serif;
  padding: 0 0 10px 0;
  font-style: normal;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* DIV = text justify */
div {
  text-align: justify;
  text-justify: inter-word;
  font-size: 0.9em;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5em;
  color: #111;
}

.align-center {
text-align: center;
margin: auto;
display: block;
}

h1 {
  font-size: 35px;
}


/* Style for content */

.banner {
  line-height: 1.5em;
  height: 100vh;
  font-size: 1.1em;
  padding: 5%;
  justify-content: center;
  align-items: center;
  text-align: center;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */

}
.banner a {
  text-decoration: none;
  color:black;
}
.banner a:hover {
  color: #36c;
}


.banner__title {
  -webkit-animation: slide-down 1s forwards;
          animation: slide-down 1s forwards;
}
.banner__description {
  -webkit-animation: slide-down 1.2s forwards;
          animation: slide-down 1.2s forwards;
}

@-webkit-keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(120px);
  }
  to {
    opacity: 0.9;
    transform: none;
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(120px);
  }
  to {
    opacity: 0.9;
    transform: none;
  }
}

/* Style for border single post */
spanpost {	
	margin: 5px 0 25px 0;
    padding: 25px;
    background-color: #fff;
    border: 2px solid #;
	border-radius: 5px;
    opacity: 0.99;
    line-height: 120%;
	display: inline-block;
	text-align: justify;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
    font-size: 1.1em;
/*    box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;	*/
}
spanpost a {
	font-weight: 600;
	text-decoration: none;
}
spanpost a:hover {
	color: #36c;
}

/* Style for bold text */
spanb {	
	font-weight: 600;
}
/* Style for Span slide logo top */
span {	
	margin-top: 0px;
    padding: 5px 12px 7px 15px;
    background-color: #36c;
    border: 9px solid #;
    font-size: 1.3em;
    color: #eee;
    opacity: 0.99;
    line-height: 120%;
    border-radius: 3px;
    transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);	 /*	for IE  */
	-webkit-transform: rotate(-5deg);	/* 	for browsers supporting webkit (such as chrome, firefox, safari etc.). */
    display: inline-block;
}

spanbottom {	
	margin-top: 20px;
    padding: 22px;
    border: 0px solid #36c;
    line-height: 150%;
	font-size: 0.9em;
	color: #555;
	text-align:justify;
	display: block;
}


/* Style for YT video */

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Style for img caption */



/* To Top */
#button {
  display: inline-block;
  background-color: #36c;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 3px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "↑";
  font-weight: bold;
  font-style: normal;
  font-size: 1.5em;
  line-height: 45px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #14a;
}
#button:active {
  background-color: #14a;
}
#button.show {
  opacity: 1;
  visibility: visible;
}

.btn {							/* BUTUN */
    display: block;
    margin: auto;
    padding: 7px 10px 0 10px;
    width: 120px; height: 30px;
    background-color: #36c;
    color: white;
    font-weight: 600;
    border-radius: 5px;
    z-index: 999;
    text-align: center;
}

.btn hover {
    background-color: #36c;
}

.centerimage {	
    display: block;
    margin: auto;
	text-align: center;
}