* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

#main {
  width: 100%;
  height: 100vh;
  position: relative;
  background-size: cover;
  transition: 1.5s;
}

.navbar {
  width: 85%;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 30px;
}

.logo {
  flex-basis: 20%;
}
.logo img {
  width: 200px;
  cursor: pointer;
}
nav {
  flex: 1;
  text-align: right;
}
nav ul li {
  list-style: none;
  color: white;
  display: inline-block;
  margin-left: 50px;
  cursor: pointer;
}

.circle-box {
  position: absolute;
  height: 410px;
  width: 410px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  border-radius: 50%;
}

svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#svgCircle {
  stroke-dasharray: 1256;
  stroke-dashoffset: 1256;
  transition: 1s;
}

span {
  position: absolute;
  height: 10px;
  width: 10px;
  background: #fff;
  border-radius: 50%;
  display: block;
  cursor: pointer;
  z-index: 10;
}
#step1 {
  right: 140px;
  bottom: 10px;
}
#step2 {
  left: 37px;
  bottom: 86px;
}
#step3 {
  left: 37px;
  top: 84px;
}
#step4 {
  right: 135px;
  top: 11px;
}
#step5 {
  right: 1px;
  top: 200px;
}

.user-box {
  width: 350px;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  transition: 1s;
}

.user img {
  width: 80px;
  margin-bottom: 10px;
  border-radius: 50%;
}
.social-links img {
  width: 20px;
  border-radius: 0;
  padding: 5px 10px;
  cursor: pointer;
}
.user-box p {
  margin: 20px 0;
  color: #c0c0c0;
  line-height: 25px;
}

.user {
  height: 450px;
}
