.home {
  height: 100vh;
}

.profile-photo {
  margin: auto;
  text-align: center;
  align-items: center;
  justify-content: center;
  align-items: center;
}

.profile-photo img {
  width: 100px;
  height: 100px;
  margin: 0;
}

.profile-photo span {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.links ul {
  text-align: center;
  list-style-type: none;
  position: relative;
  right: 10px;
}

.links ul li {
  display: inline-block;
  float: none;
  margin: 10px;
}

.links ul li a {
  text-decoration: none;
  color: white;
}

.links ul li a i {
  font-size: 25px;
}

@keyframes color {
  from { color: white; }
  to { color: #ffd15c; }
}

.links ul li a i:hover {
  position: relative;
  color: #ffd15c;
  animation-name: color;
  animation-duration: 0.3s;
}

.buttons {
  text-align: center;
  margin: auto;
}

.buttons a {
  text-decoration: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  background-color: #ff4c60;
  color: white;
}

.arrow {
  text-align: center;
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 30px;
}

@keyframes arrow {
  0% { position: relative; bottom: 0;}
  30% { position: relative; bottom: 0;}
  65% { position: relative; bottom: 5px;}
  100% { position: relative; bottom: 0;}
}

.arrow i {
  color: white;
  font-size: 20px;
  position: relative;
  bottom: 0;
  animation-name: arrow;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}