/* Full screen loader */
#loader {
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    z-index: 1000;

    display: none;
}

/* Centering content */
.loading-container {
  text-align: center;
}

.loading-container div {
  width: 50vh;
  margin: 0 auto;
}

/* Text styling */
.loading-container h1 {
  font-size: 4vh;
  margin-top: 1vh;
}
.loading-container h1::before {
	content: "Finding the perfect gift";
}
.loading-container h2 {
  font-size: 2vh;
  margin-top: 0.5vh;
  	color: var(--secondary-color-dark);
}

@media (max-width: 768px) or (orientation: portrait) {
  .loading-container h1 {
    font-size: 3.5vh;
}
  .loading-container h1::before {
  	content: "Finding perfect gift";
  }
  .loading-container div {
    width: 90vw;
}
}