.center {
  margin: 0 auto;
}

.ring-container {
  position: relative;
  Margin: -5% 0 5% 0;
  text-align: center;
  height: 100%;
}

.outer-ring {
  position: absolute;
  left: calc(50% - 200px);
  top: calc(50% - 200px);
  height: 400px;
  width: 400px;
  background: linear-gradient(-45deg, #ed7752, #7c2a8d, #22a6d4, #91c041);
  background-size: 400% 400%;
  border-radius: 50%;
  display: inline-block;
  z-index: 2;

  /*  Rotate  */
  animation: gradient 15s ease infinite;
}

.inner-ring {
  position: absolute;
  left: calc(50% - 190px);
  top: calc(50% - 190px);
  height: 380px;
  width: 380px;
  background-image: url("../img/about/amedea_headshot.jpg") !important;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  border: 20px solid white;
  display: inline-block;
  z-index: 3;
}

.background-ring {
  position: relative;
  height: 350px;
  width: 350px;
  display: inline-block;
  z-index: 1;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.indibox {
    position: relative;
    top: 80%;
    Margin 0 auto;
    width: 100%;
}

#scrollIndicator {
    position: relative;
    bottom: 0;
    margin-left: -50px;
}

#scrollIndicator i {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 100%;
    position: absolute;
    z-index: 100;
    left: 10px;
    top: 10px;
}

#scrollIndicator:before,
#scrollIndicator:after {
    content: "";
    top: 0;
    left: 0;
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    opacity: 0;
}

#scrollIndicator:before {
    -webkit-animation: jumper 1.8s 0.33333s ease-out infinite;
}

#scrollIndicator:after {
    -webkit-animation: jumper 1.8s 0.66666s ease-out infinite;
}

@-webkit-keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    5% {
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    5% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
