.logo-and-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome-logo {
  position: relative;
  width: 250px;
  height: 250px;
  /* center horizontally */
}

/* Static logo */
.calvin-welcome-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.circle-text-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  animation: rotate 25s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.intro-section {
  display: flex;
  height: 800px;
  width: 100%;
}

.intro-left {
  flex: 1;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-right {
  flex: 1;
  background-color: rgb(200, 200, 200);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px;
}

.about-me {
  font: black;
  font-size: 22px;
  font-family: Roboto, Arial, sans-serif;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.social-button {
  position: relative;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 25px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

}

.insta-icon,
.discord-icon,
.youtube-icon,
.linkedin-icon,
.github-icon {
  height: 24px;
}

.social-button:hover {
  opacity: 50%;
}

.social-button:active {
  opacity: 100%;
}
