@import url("https://fonts.googleapis.com/css?family=Roboto");
.umv {
  position: relative;
}

.umv_nav {
  position: absolute;
  top: 50px;
  left: 20%;
  width: 60%;
  z-index: 5;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation-name: k2;
          animation-name: k2;
  -webkit-animation-duration: 1s;
          animation-duration: .5s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: ease;
}

.umv_nav__link {
  color: #80d4ff;
  text-transform: uppercase;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.1);
}

.umv_nav__link:hover {
  color: white;
}

.umv_nav__link--logo {
  margin-right: 30%;
}

.umv_nav__link--logo img {
  max-height: 60px;
  margin-left: -25px;
}

.umv_nav__link--current {
  border-bottom: 2px solid yellow;
  color: yellow;
}

.umv_nav__link--current:hover {
  text-decoration: none;
  border-bottom-color: white;
}

.umv_section {
  position: relative;
}

.umv_section--password {
  background: url("images/password.jpg") 50% 75%;
  height: 100vh;
}

.umv_section__content {
  position: absolute;
  left: 20%;
  width: 30%;
  top: 30%;
  text-align: left;
  color: white;
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  text-shadow: 3px 3px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.umv_section__content__header {
  font-size: 2.5em;
  margin-bottom: .5em;
}

.umv_section__content__button {
  background: yellow;
  padding: 12px 40px;
  border-radius: 27px;
  border: yellow solid 3px;
  font-weight: bold;
  color: #1f343c;
  margin-top: 1em;
  display: inline-block;
  transition: all .4s;
  text-shadow: none;
  -webkit-box-shadow: 0px 5px 20px 5px rgba(0, 255, 255, 0.15);
          box-shadow: 0px 5px 20px 5px rgba(0, 255, 255, 0.15);
}

.umv_section__content__button:hover {
  background: transparent;
  color: yellow;
  text-decoration: none;
  -webkit-box-shadow: 0px 5px 20px 5px rgba(255, 255, 0, 0.25);
          box-shadow: 0px 5px 20px 5px rgba(255, 255, 0, 0.25);
}

.umv_animation {
  width: 640px;
  height: 640px;
  position: absolute;
  overflow: hidden;
}

.umv_animation:after, .umv_animation:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(182, 225, 235, 0) 0%, rgba(182, 225, 235, 0.05) 40%, rgba(182, 225, 235, 0.4) 100%);
  border: 0.5px solid white;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation-name: k1;
          animation-name: k1;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.umv_animation:before {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.umv_animation--tr {
  top: 0;
  right: 0;
}

.umv_animation--bl {
  bottom: 0;
  left: 0;
}

.umv_animation--bl:after, .umv_animation--bl:before {
  top: 0;
  right: 0;
  left: auto;
}

@-webkit-keyframes k1 {
  0% {
    -webkit-transform: scale(0.01);
            transform: scale(0.01);
    opacity: 0;
  }
  33% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes k1 {
  0% {
    -webkit-transform: scale(0.01);
            transform: scale(0.01);
    opacity: 0;
  }
  33% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes k2 {
  0% {
    width: 100%;
    top: -50px;
    left: 0;
    opacity: 0;
  }
  100% {
    width: 60%;
    left: 20%;
    top: 50px;
  }
}

@keyframes k2 {
  0% {
    width: 100%;
    top: -50px;
    left: 0;
    opacity: 0;
  }
  100% {
    width: 60%;
    left: 20%;
    top: 50px;
  }
}
/*# sourceMappingURL=custom.css.map */