@font-face {
  font-family: "CustomFont";
  src: url("") format("truetype");
}

body {
  max-width: 100%;
  height: 100vh;
  background-color: #f4f4f4;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

#loading {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 2;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

h1 {
  color: #333;
  font-size: 2em;
  font-family: "CustomFont", Arial, sans-serif;
  font-weight: 200;
  word-wrap: break-word;
  max-width: 90%;
  position: relative;
  z-index: 2;
  display: none;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#backgroundImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.smartbanner__info {
  text-align: left;
}

.smartbanner__info__title {
  margin-bottom: 6px;
}

.smartbanner__info__author {
  margin-bottom: 6px;
  color: #848489;
}

.smartbanner__info__price {
  color: #848489;
}
