*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #05A9E1;
    text-decoration: none;
}

.container {
    background: url('../res/Pixel-Perfect-Background-Main.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.container::before {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    display: block;
    content: '';
}

.container .title {
    color: #FFF;
    font-weight: 400;
    font-size: 3em;
    margin-bottom: 30px;
    z-index: 1;
}

.container .text {
    color: #FFF;
    margin-bottom: 5%;
    z-index: 1;
}

.container img {
    width: 30%;
    z-index: 1;
}

.container .domain-name {
    color: #05A9E1;
    font-size: 1.6em;
    margin: 0;
}

@media (max-width: 768px) {
    .container img {
        width: 50%;
    }
    .container .title {
        font-size: 3em;
        word-wrap: break-word;
    }

    .container .text {
        margin-bottom: 15%;
    }
}

@media (max-width: 480px) {
    .container .title {
        font-size: 2em;
    }
}


.cube--wrapper {
  width: 75px;
  height: 75px;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  margin-bottom: 60px;
}
.cube--wrapper .cube {
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.cube--wrapper .cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.cube--wrapper .cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #05A9E1;
  -webkit-animation: foldthecube 2.4s infinite linear both;
  animation: foldthecube 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
.cube--wrapper .c2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}
.cube--wrapper .c3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}
.cube--wrapper .c4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}
.cube--wrapper .c2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.cube--wrapper .c3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.cube--wrapper .c4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
@-webkit-keyframes foldthecube {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
        75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
        100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
@keyframes foldthecube {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%,
        75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%,
        100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}
