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

html, body {
  height:100%;
  width:100%;
}

body {
  background: #FFF0C2;
  font-size:14px;
  font-family:Josefin Sans, sans-serif;
  background-image: url("../images/christmas_background2.jpg");
}

table {
	padding:3px;
	margin:auto;
	font-size:20px;
}

td {
  /* background-color:#def; */
	padding:10px 20px 10px 20px;
	text-align:center;
}

.gray{background-color:#eaeaea;}

.purple{background-color:#cc99ff;}

#titlebar {
  font-family: Josefin Sans, sans-serif; 
  font-size:56px; 
  padding:45px 45px 25px 45px; 
  background-image: url("../images/snow-background.jpg"); 
  text-transform: uppercase; 
  width: 1000px; 
  margin: auto; 
  text-align:center;}

#loginbar {
  font-family: Josefin Sans, sans-serif; 
  font-size:16px; 
  padding:20px 15px 5px 15px; 
  background-color: #f4f8ff; 
  width: 500px; 
  margin: auto; 
  text-align:center;
  border:1px solid #ccf;
}

/*loading div css */
/* Define the container div */
.loading-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Define the loading animation */
.loading-circle60 {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top-color: #00bcd4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Define the loading animation */
.loading-circle10 {
  width: 10px;
  height: 10px;
  border: 3px solid #ccc;
  border-top-color: #00bcd4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Define the loading animation */
.loading-circle20 {
  width: 20px;
  height: 20px;
  border: 5px solid #ccc;
  border-top-color: #00bcd4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Define the loading animation */
.loading-circle30 {
  width: 30px;
  height: 30px;
  border: 8px solid #ccc;
  border-top-color: #00bcd4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Define the animation keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}