* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background: #1a1a1a;
}

.loader-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 30px;
}

.loader {
  width: 120px;
  height: 120px;
  border: 5px solid #222;
  border-top: 10px solid #ff5500;
  border-radius: 50%;
  animation: spin 1s linear infinite;

}
#loader-indication {
	font-size:36px;
	font-weight:bold;
	color:#FFF;
	text-align:center;
	line-height:2;
	width:100%;
	height:0px;
	overflow:visible;
	margin-bottom:-55px;
	z-index:+1;
}
#loader-smile {
	font-size:86px;
	font-weight:bold;
	color:#ffbf00;
	text-align:center;
	line-height:0;
	width:100%;
	height:0px;
	overflow:visible;
	margin-bottom:-75px;
	padding-bottom: 4px;
	z-index:+1;
	margin-left: -8px;
	visibility:hidden;
    transform: matrix(1.2, 0, 0, 1, 5, 0);
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.redirect-text {
  font-size: 1.2em;
  color: #aaa;
}
.redirect-button {
	background-color:#ff5500;
	width:210px;
	text-align:center;
	margin:10px;
	padding:10px;
	border-width:0px;
	border-radius:15px;
	font-size:18px;
	font-weight:bold;
	color:#FFF;
	cursor:pointer;
}
.redirect-button:hover {
	background-color:#cd4400;
}