.image {
	position: fixed;
	top: 0;
	padding: 10px;
	bottom: 0;
	left: 0;
	transform: translate(0, 0);
	height: 20%;
}

.button:hover {
	background-color: rgba(128, 128, 128, 0.1);
}

.button:active {
	background-color: rgba(128, 128, 128, 0.2);
}

.button {
	background-color: transparent;
	color: white;
	border: none;
	padding: 30px 30px;
	font-size: 20px;
	border-radius: 5px;
	cursor: pointer;
	margin-bottom: 10px;
	font-weight: bold;
	text-shadow: 2px 2px 2px black;
	margin-right: 10px;
}

.button-container {
	position: fixed;
	top: 1%;
	right: 10px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

body,
html {
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100%;
}

.webgl {
	display: block;
	width: 100%;
	height: 100%;
}

body.vertical {
	position: relative;
}

.black-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.98);
	z-index: 9999;
}

.gif-container {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(40%);
	z-index: 10000;
}

.rotate-message {
	position: fixed;
	top: 10%;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 24px;
	text-align: center;
	font-weight: bold;
	z-index: 10001;
}

body {
	margin: 0;
	overflow: hidden;
	font-family: Arial, sans-serif;
}

#loader-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 1);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 19999;
  }
  
  #loader {
	width: 50px;
	height: 50px;
	border: 4px solid #fff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 1s infinite linear;
  }
  .social-buttons-container {
	background-color: transparent;
	color: white;
	border: none;
	margin-right: 10px;
	margin: 10px;
	position: fixed;
	bottom: 0;
	right: 10px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	font-weight: bold;
	text-shadow: 2px 2px 2px black;
	margin-right: 10px;
  }
  .social-buttons-container {
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .social-buttons-container a {
	display: inline-block;
	margin: 10px;
	border-radius: 10%;
	overflow: hidden;
  }
  
  .social-buttons-container img {
	display: block;
	width: 50px; /* Ajusta el tamaño según tus necesidades */
	height: 50px; /* Ajusta el tamaño según tus necesidades */
  }
  .social-buttons-container button {
	margin: 10px;
  }
  
  
  @keyframes spin {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }