body{
    background: #3c3f41;
}

.wrapper{
  width: 100%;
}
.text{
    color: white;
    text-align: center;
}

.img-container{
    position: relative;
    width: 100%;
    box-shadow: 0 0 25px #242424;

}

.load{
  position: absolute;
  left: 60%;
  top: 80%;
  width: 30%;
}

.load > div {
  float: left;
}
@media screen and (max-width: 550px) {
  .com {
    color: white;
    font-size: 20px;
    display: inline-block;
  }
}

@media screen and (min-width: 550px) and (max-width: 960px) {
  .com {
    color: white;
    font-size: 25px;
    display: inline-block;
  }
  .loader-2{
    margin-top: 15px;
    width: 5px;
    height: 5px;
  }
}

@media screen and (min-width: 960px) {
  .com {
    color: white;
    font-size: 30px;
    display: inline-block;
  }
}

.logo{
  position: absolute;
  margin-top: 7%;
  width: 100%;
  text-align: center;
  -webkit-animation: logo 2s 1;
  animation: logo 2s 1;
}

.loader-2 {
  margin-left: 25px;
  margin-top: 22px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  -webkit-animation: loader-2 0.9s 0.35s ease alternate infinite;
  animation: loader-2 0.9s 0.35s ease alternate infinite;
}

.loader-2:after,
.loader-2:before {
  display: inline-block;
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: loader-2 0.9s ease alternate infinite;
  -webkit-animation: loader-2 0.9s ease alternate infinite;
}

.loader-2:before {
  left: -20px;
  animation-delay: 0.2s;
}

.loader-2:after {
  right: -20px;
  animation-delay: 0.5s;
}

@keyframes loader-2 {
  0% {
    box-shadow: 0 15px 0 -15px #ffffff;
  }
  100% {
    box-shadow: 0 15px 0 #ffffff;
  }
}

@-webkit-keyframes loader-2 {
  0% {
    box-shadow: 0 15px 0 -15px #ffffff;
  }
  100% {
    box-shadow: 0 15px 0 #ffffff;
  }
}

@keyframes logo {
  0% {
    opacity: 0;
    margin-top: -30%;
  }
  100% {
    opacity: 100%;
    margin-top: 7%;
  }
}

@-webkit-keyframes logo {
  0% {
    opacity: 0;
    margin-top: -30%;
  }
  100% {
    opacity: 100%;
    margin-top: 7%;
  }
}