@font-face {
  font-family: Roboto;
  src: url("fonts/Light/Roboto-Light.woff2?v=2.137") format("woff2"), url("fonts/Light/Roboto-Light.woff?v=2.137") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Roboto;
  src: url("fonts/Regular/Roboto-Regular.woff2?v=2.137") format("woff2"), url("fonts/Regular/Roboto-Regular.woff?v=2.137") format("woff");
  font-weight: 400;
  font-style: normal;
}

html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #21328A;
  color: #fff;
  position: absolute;
  font-family: Roboto, Arial, sans-serif;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  animation: scales 10s ease-in-out infinite alternate;
}

@keyframes scales {
  from {
    transform: scale(4) rotate(30deg);
    opacity: 0;
  }
  to {
    transform: scale(1.1);
    opacity: .1;
  }
}

.index {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 40px;
  border-radius: 2px;
  animation: fade 2s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
  }
}

.index__cloud {
  background: url(logo.svg) no-repeat 50% 50%;
  background-size: contain;
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
}

.index__logos {
   display: block;
   text-align: center;
   padding: 0 16px;
   margin: 0 auto;
 }

.index__renesas {
  background: url(renesas-logo.svg) no-repeat 0 50%;
  background-size: contain;
  height: 60px;
  width: 260px;
  display: block;
  margin: 0 auto;
}

.index__epam {
  background: url(epam.svg) no-repeat 0 50%;
  background-size: contain;
  height: 60px;
  width: 110px;
  display: block;
  margin: 0 auto;
}

.index__and {
  position: relative;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin: 0 auto;
}

.index__and:after, .index__and:before {
  position: absolute;
  content: "";
  width: 110px;
  border-bottom: 1px solid rgba(255,255,255,.5);
  top: 17px;
}

.index__and:after {
  left: 0;
}

.index__and:before {
  right: 0;
}

.index__button {
  border: 1px solid rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 16px;
  border-radius: 2px;
  padding: 7px 18px;
  display: inline-block;
  margin: 32px 7px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.45;
}

.index__button:hover {
  background: #fff;
  color: #21328A;
}
