body {
    font-family: sans-serif;
}

.logo {
    width: 30px;
    height: 30px;
}

footer {
    font-size: 12px;
    font-weight: 700;
}

.iconFoot {
    padding: 0px;
    margin: 0px;
    font-size: 25px;
}

#content {
    margin-bottom: 60px;
}

.mainImage {
    width: 100%;
    height: 325px;
}

.videoTag {
    width: 100%;
    height: 200px;
}

#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(55, 55, 55, 0.8);
  z-index: 9999;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid #fff;
  border-top-color: #9f8d5c;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}