@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
.tower-twins {
  position: absolute;
  display: flex;
  justify-content: center;
  margin: -180px 110px;
  zoom: 1;
}
.tower-twins::before, .tower-twins::after {
  content: "";
  border-radius: 50% 50%;
  position: absolute;
  margin: -245px 0px;
  padding: 160px;
}
.tower-twins::after {
  content: "";
  background: radial-gradient(circle at top right, #61DAFB, #61DAFB 35%, #1565C0 80%, #311B92);
  z-index: -2;
  animation: circle-whoohoo 15s linear infinite;
}
.tower-twins::before {
  background: transparent;
  z-index: 2;
  box-shadow: 0px 0px 0px 100px white;
}

svg {
  width: 520px;
  height: 520px;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease-in;
  animation: whoohoo 15s linear infinite;
}
svg > g > path, svg > g > circle {
  fill: white;
  opacity: 0.85;
}

.title {
  font-family: Roboto, sans-serif;
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
  color: #263238;
}

.tower-left {
  border-radius: 30px 30px 0px 0px !important;
}

.tower-right {
  border-radius: 30px 30px 0px 0px !important;
}

.bridge {
  z-index: -1;
  position: relative;
  width: 100px;
  transform: translateY(-10px) translateX(0px);
}
.bridge::before, .bridge::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 11px;
  background: #455A64;
}
.bridge::before {
  margin: 0px -30px;
  border-radius: 0px 50px;
}
.bridge::after {
  margin: 25px 30px;
  border-radius: 0px 50px;
}

.tower-single {
  background: white;
  border: 10px solid #455A64;
  width: 80px;
  height: 100px;
  border-radius: 30px 30px 0px 0px;
  box-shadow: 0px -60px 0px -15px white, 0px -60px 0px -5px #455A64, 0px -110px 0px -25px white, 0px -110px 0px -15px #455A64, 0px -145px 0px -30px white, 0px -145px 0px -20px #455A64;
  transform: translateY(0px) translateX(0px);
}
.tower-single::before {
  content: "";
  background: white;
  padding: 8px;
  border-radius: 50%;
  position: absolute;
  margin: -160px 25px;
  border: 8px solid #455A64;
}
.tower-single::after {
  content: "";
  background: white;
  padding: 30px 1px;
  border-radius: 50%;
  position: absolute;
  margin: -215px 31px;
  border: 8px solid #455A64;
  z-index: -5;
}

@keyframes whoohoo {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circle-whoohoo {
  0%, 100% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(120deg);
  }
  30% {
    transform: rotate(100deg);
  }
  50% {
    transform: rotate(250deg);
  }
  70% {
    transform: rotate(200deg);
  }
  90% {
    transform: rotate(300deg);
  }
}

/*# sourceMappingURL=style.css.map */
