body {
background-image: URL(..//landingpage/mgl-website-background.jpg);
background-size: cover;
background-color: #f9f9f9;
/*background: linear-gradient(#ffffff, #f8f8f8);*/
margin: 0px;
min-width: 275px;
font-size: 12px;
}

h1 {
        font-size: 1.4em;
}
.precontainer {
position: absolute;
    height: 50vh;
    align-content: center;
    width: 100%;
    z-index:  1000;
}

.precontainer img {
    margin-top: 22vh;
      display: block;
    margin-left: auto;
    margin-right: auto;
}

.postcontainer {
    font-family: sans-serif;
    text-align: center;
color: #ffffff;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
min-height: 50vh;
}

a {
    color: #fbea10;
}


.loader {
  max-width: 15rem;
  width: 100%;
  height: auto;
  stroke-linecap: round;
}

circle {
  fill: none;
  stroke-width: 10;
  -webkit-animation-name: preloader;
          animation-name: preloader;
  -webkit-animation-duration: 7s;
          animation-duration: 7s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-transform-origin: 170px 170px;
          transform-origin: 170px 170px;
  will-change: transform;
}
circle:nth-of-type(1) {
  stroke-dasharray: 550px;
}
circle:nth-of-type(2) {
  stroke-dasharray: 500px;
}
circle:nth-of-type(3) {
  stroke-dasharray: 450px;
}
circle:nth-of-type(4) {
  stroke-dasharray: 300px;
}
circle:nth-of-type(1) {
  -webkit-animation-delay: -0.15s;
          animation-delay: -0.15s;
}
circle:nth-of-type(2) {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
circle:nth-of-type(3) {
  -webkit-animation-delay: -0.45s;
          animation-delay: -0.45s;
}
circle:nth-of-type(4) {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

@-webkit-keyframes preloader {
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes preloader {
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
