.resume {
  background: linear-gradient(to right, #ff6600 0%, #7e0062 50%, #ff6600 100%);
  border-radius: 20px;
  border: 6px solid white;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  width: 50%;
  margin: 0 auto;
  background-size: 200% auto;
  background-position: 0% 50%;
  animation: gradient-scroll 40s linear infinite;
  overflow: hidden;
  position: relative;
}

@keyframes gradient-scroll {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.left-column {
  width: 50%;
  position: relative;
  z-index: 2;
}

.right-column {
  width: 50%;
  color: white;
  position: relative;
  z-index: 3;
  margin-left: -6px;
}

.header {
  margin-bottom: 20px;
}

.header h2 {
  font-size: 24px;
  margin-bottom: 10px;
  transform: scale(0);
  animation: scale-in 0.5s forwards;
}

@keyframes scale-in {
  100% {
    transform: scale(1);
  }
}

hr {
  border: none;
  height: 1px;
  background-color: white;
  margin-top: 5px;
  margin-bottom: 5px;
  width: 50%;
  position: relative;
  left: 100%;
  animation: slide-in 0.5s forwards;
}

@keyframes slide-in {
  100% {
    left: -22%;
  }
}

@keyframes fade-in {
  100% {
    opacity: 1;
  }
}

ul {
  opacity: 0;
  animation: fade-in 1.5s forwards;

  color: white;
  font-family: Gilroy, sans-serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5), -2px -2px 5px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
  text-align: left;
}

p {
  font-size: 16px;
  opacity: 0;
  animation: fade-in 1.5s forwards;
}

.corner-image {
  float: right;
  margin-top: -15px;
  margin-left: 15px;
  border-radius: 50%;
  border: 6px solid white;
  transform: scale(0);
  animation: corner-animation 1s ease-in-out forwards;
}

@keyframes corner-animation {
  0% {
    transform: rotate(180deg) scale(0);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}