.table td {
  text-align: right;
  font-size: 1.25rem;
}

.loading-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
}

.spin-loader {
  position: absolute;
  top: 60%;
  left: 50%;
  border: 16px solid #000;
  border-radius: 50%;
  border-top: 16px solid #a9a9a9;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.content img {
  height: auto;
  max-width: 100%;
  float: left;
  padding-right: 1rem;
}

.content p {
  font-size: 1.25rem;
  color: #000;
}

.content a {
  font-weight: bold;
}

.content a:hover {
  background-color: yellow;
}

.content .section a:hover {
  background-color: transparent;
}

.footer img {
  display: block;
  margin:auto;
}

.menu {
  font-size: 1.25rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /*16:9*/
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* return to top button */
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 30px;
  z-index: 99;
  font-size: 18px;
  cursor: pointer;
}

#myBtn:hover {
  background-color: #000;
  border-color: transparent;
  color: #fff;
}
