/* Set initial styles for the body */
.leftSideContent {
  position: fixed;
}

/* Styles for social media icons */
.icons img {
  width: 25px;
  height: auto;
  display: inline-block;
  filter: brightness(0) invert(1);
  margin: 0 10px 0 0;
  margin-top: 480px;
}

/* Body styles */
body {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  background-color: #2b2b33;
  word-spacing: 4px;
}

/* Styles for the left section */
.left-section {
  background-color: #2b2b33;
  margin: 200px;
  margin-top: 60px;
  color: #aab2d1;
  flex: 1;
  box-sizing: border-box;
}

/* Styles for the right section */
.right-section {
  background-color: #2b2b33;
  color: #aab2d1;
  margin-right: 200px;
  margin-left: 100px;
  flex: 2.3;
  box-sizing: border-box;
}

/* Additional body styles */
body {
  font-family: sans-serif;
}

/* Heading styles */
h1 {
  font-size: 40px;
  margin-bottom: 0px;
  color: #f3f2f9;
}

/* Heading styles for the first section */
.headerOne {
  font-size: 18px;
  margin-bottom: 30px;
  margin-top: 10px;
}

/* Paragraph styles for the about section */
.aboutParagraph {
  margin-top: 100px;
  margin-left: 40px;
}

/* Styles for links with class 'link2018' */
.link2018 {
  padding: 10px;
  transition: background-color 0.3s;
}

.link2018:hover {
  background-color: rgb(58, 72, 106);
}

/* Styles for forms */
form {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Styles for contact form */
.contactForm {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Horizontal rule styles */
hr {
  margin: 3px 0;
  width: 80%;
}

/* List item styles */
li {
  display: inline;
  padding: 3px;
  background-color: #4d536c;
  border-radius: 10px;
  color: rgb(231, 241, 241);
}

/* Heading styles for job titles */
h3 {
  display: inline;
  margin: 36px;
  font-size: 15px;
  font-weight: normal;
  color: #f3f2f9;
}

/* Styles for the right section content */
.rightSide {
  display: flex;
  flex-direction: column;
  padding-left: 200px;
}

/* List styles */
ul {
  padding-left: 0px;
}

/* Job title styles */
.jobTitle {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* HeaderOne styles */
.headerOne {
  color: #f3f2f9;
  text-decoration: none;
}

/* Heading styles */
h2 {
  font-size: 20px;
  color: #f3f2f9;
}

/* Navigation link styles */
.navlink {
  width: 60px;
  height: auto;
  position: absolute;
  top: 15%;
  left: 90%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Cursor content styles */
.cursorBody {
  margin: 0;
  height: 100vh;
  cursor: none;
  background: rgb(27, 27, 27);
}

/* Styles for the custom cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 50%;
  position: absolute;
  transition-duration: 200ms;
  transition-timing-function: ease-out;
  animation: cursorAnim 0.5s infinite alternate;
  pointer-events: none;
}

/* Styles for the after element of the cursor */
.cursor::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  border: 8px solid gray;
  border-radius: 50%;
  opacity: .5;
  top: -8px;
  left: -8px;
  animation: cursorAnim2 0.5s infinite alternate;
}

/* Keyframes for cursor animation */
@keyframes cursorAnim {
  from {
      transform: scale(1);
  }
  to {
      transform: scale(.7);
  }
}

@keyframes cursorAnim2 {
  from {
      transform: scale(1);
  }
  to {
      transform: scale(.4);
  }
}

/* Keyframes for cursor animation */
@keyframes cursorAnim3 {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(3);
  }
  100% {
      transform: scale(1);
      opacity: 0;
  }
}

/* Expand animation styles */
.expand {
  animation: cursorAnim3 0.5s forwards;
  border: 1px solid red;
}
