* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
}

html,
body {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  position: relative;
}

.jobtitle:hover {
  color: #0bf0ab;
}

.reveal {
  position: relative;
  opacity: 0;
}

.reveal.active {
  opacity: 1;
}
.active.fade-bottom {
  animation: fade-bottom 1s ease-in-out;
}

.active.fade-left {
  animation: fade-left 1s ease-in-out;
}

.active.fade-right {
  animation: fade-right 1s ease-in-out;
}

/* Animations */
@keyframes fade-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-left {
  0% {
    transform: translateX(-100%);
    opacity: 0;
    filter: blur(5px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes fade-right {
  0% {
    transform: translateX(100%);
    opacity: 0;
    filter: blur(5px);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes main_header {
  from {
    opacity: 0;
    transform: translateY(-500px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes main_description {
  from {
    opacity: 0;
    transform: translateX(-100%);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes main_img {
  from {
    opacity: 0;
    transform: translateX(100%);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes transitionMobile {
  from {
    opacity: 0;
    margin-right: -40px;
  }

  to {
    opacity: 1;
  }
}

/* HTML Headers */
.border_break {
  position: relative;
  background-color: #021d15;
  height: 1vw;
  z-index: 1;
}

.header_container {
  height: 20vw;
  position: relative;
  z-index: 10;
  background-color: #070707;
}

.header_container_obj {
  height: 35vw;
  position: relative;
  z-index: 10;
  background-color: #070707;
}

.header_container_proj {
  height: 0vw;
  position: relative;
  z-index: 10;
  background-color: #070707;
}

.header_content_top {
  height: 100%;
  text-align: left;
  margin: auto;
}

.header_content_bottom {
  height: 100%;
  text-align: left;
  margin: auto;
}

.header_content_top p {
  position: absolute;
  font-size: 1.75vw;
  top: 100%;
  left: 10%;
  color: #0bf0ab;
}

.header_content_bottom p {
  position: absolute;
  font-size: 1.75vw;
  top: 0%;
  left: 10%;
  color: #0bf0ab;
}

#header-picture {
  position: relative;
  bottom: 12vw;
  width: 100%;
}

#header-picture-obj {
  position: relative;
  top: 3vw;
  width: 100%;
}

.background {
  background-color: #070707;
  background-repeat: no-repeat;
  height: 100vh;
}

.background_top {
  background-color: #070707;
}

/* Hamburger Icon */
#hamburger_icon {
  position: fixed;
  margin: auto 0;
  display: none;
  cursor: pointer;
  left: 15px;
  margin-top: 10px;
  z-index: 15;
}

#hamburger_icon div {
  width: 40px;
  height: 4px;
  background-color: rgb(136, 136, 136);
  margin: 6px 0;
  transition: 0.4s;
}

.open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-6px, 6px);
  transform: rotate(-45deg) translate(-6px, 6px);
}

.open .bar2 {
  opacity: 0;
}

.open .bar3 {
  -webkit-transform: rotate(45deg) translate(-6px, -8px);
  transform: rotate(45deg) translate(-6px, -8px);
}

.open .mobile_menu {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.mobile_menu {
  display: none;
  position: absolute;
  text-align: left;
  top: 2vw;
  left: 9vw;
  height: 0vw;
  width: 100%;
  background-color: #000;
}

.mobile_menu a {
  animation: transitionMobile 0.75s;
  color: rgb(136, 136, 136);
  text-decoration: none;
  line-height: 60px;
  font-size: 2vw;
  font-weight: 700;
  letter-spacing: 0.25vw;
  left: 0.8vw;
  text-shadow: 0.1vw 0.1vw rgba(11, 240, 171, 0.345);
  text-underline-offset: 2vw;
  padding: 0 3vw;
}

.mobile_menu li {
  list-style: none;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  height: 80px;
  width: 500px;
  right: 0;
  top: 0;
  animation: main_img 2s;
  transition: all 0.2s ease-in-out;
  z-index: 999;
}

.navbar_container {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0vw;
}

.navbar_menu {
  width: 100%;
  height: 100%;
  left: 0;
}

.text_menu {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.text_menu a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-shadow: 0.1vw 0.1vw rgba(11, 240, 171, 0.345);
  transition: all 0.3s;
  font-size: 30px;
  margin: 25px;
  top: 20px;
}

.text_item p {
  width: 100%;
  text-align: center;
  color: rgba(155, 155, 155, 0.6);
  position: relative;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  top: 35px;
  visibility: hidden;
}

.text_item:hover .text_item_title p {
  visibility: visible;
  color: rgb(255, 255, 255, 0.6);
  transition: all 0.3s ease-in-out;
}

.text_item a:hover {
  font-size: 32.5px;
  color: #0bf0ab;
  transition: all 0.3s ease-in-out;
}

.text_item a:hover:after {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

/* Media Bar */
.media-bar {
  position: fixed;
  height: 35%;
  z-index: 999;
  width: 80px;
  bottom: 0;
  left: 0;
  animation: main_description 2s;
}

.icons_menu {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0vw;
}

.social_icons--top {
  display: flex;
  justify-content: space-between;
  height: 60px;
  font-size: 25px;
  text-decoration: none;
  position: relative;
  top: 0vw;
  left: 40px;
  transition: all 0.3s;
  color: rgb(155, 155, 155);
}

.social_icons--top:hover {
  font-size: 28px;
  color: #cecece;
  transition: all 0.3s ease-in;
}

#media-bar-img {
  position: relative;
  left: 50px;
  color: rgb(155, 155, 155);
}

/* Main Container */
.main_container {
  display: flex;
  width: 100%;
  height: 57.5vw;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #070707;
}

.main_content {
  text-align: left;
  margin: auto;
  margin-top: 6vw;
  margin-left: 8vw;
  width: 100%;
  height: 60%;
}

.main_content h1 {
  color: #fff;
  position: absolute;
  font-weight: 700;
  font-size: 3vw;
  left: 13vw;
  top: 10.5vw;
  animation: main_header 1.4s ease-in-out;
}

.main_content h2 {
  position: relative;
  color: #fff;
  margin: auto;
  width: 30%;
  top: 9vw;
  right: 25vw;
  font-weight: 300;
  font-size: 2.25vw;
  animation: main_description 2s;
}

.main_content p {
  position: relative;
  color: rgb(88, 88, 88);
  margin: auto;
  width: 30%;
  top: 10vw;
  right: 25vw;
  font-weight: 0;
  font-size: 1.3vw;
  letter-spacing: 0.15vw;
  animation: main_description 1.75s;
  cursor: pointer;
}

.main_btn {
  font-size: 1vw;
  background-image: linear-gradient(90deg, #0bf0ab, #7bffd8);
  background: #0bf0ab;
  border: none;
  border-radius: 20vw;
  cursor: pointer;
  color: #0bf0ab;
  position: relative;
  transition: all 0.3s;
  outline: none;
  box-shadow: 0.25vw 0.25vw rgb(0, 0, 0);
  top: 12vw;
  left: 10vw;
  animation: main_description 1.5s;
}

.main_btn a {
  font-size: 1.4vw;
  padding: 1vw 2vw;
  display: block;
  position: relative;
  z-index: 2;
  color: #000;
  text-decoration: none;
}

.main_btn:hover {
  transform: scale(1.025);
  background: #ebac00;
  transition: all 0.3s ease-in;
}

.main_btn:hover:after {
  width: 100%;
}

.main_img_container {
  position: absolute;
  text-align: right;
  top: 5vw;
  right: 10vw;
  z-index: 0;
  animation: main_img 1.75s;
}

#main_img {
  width: 45vw;
}

.mobile_icons {
  display: none;
}

/* Career Objective CSS */
.objective_container {
  display: flex;
  position: relative;
  width: 100%;
  background-color: #070707;
  height: 18vw;
  z-index: 1;
}

.objective_content {
  text-align: center;
  margin: auto;
  width: 100%;
  height: 100%;
}

.objective_content h2 {
  position: relative;
  top: 4vw;
  color: rgb(255, 255, 255);
  width: 65%;
  margin: auto;
  font-size: 1.5vw;
  font-weight: 100;
  text-shadow: 0.1vw 0.1vw rgba(0, 0, 0, 0.345);
  line-height: 2.5vw;
}

.objective_content h2:hover {
  color: #0bf0ab;
}

/* Skills CSS */
.skills_container {
  display: flex;
  position: relative;
  width: 100%;
  height: 35vw;
  background-color: #070707;
}

.skills_content {
  text-align: center;
  margin: auto;
  width: 100%;
  height: 100%;
}

.skills_content h1:nth-child(1) {
  position: absolute;
  top: 20%;
  left: 15%;
  font-size: 4vw;
  color: #fff;
  text-shadow: 0.25vw 0.25vw rgba(11, 240, 171, 0.145);
}

.skills_content h2:nth-child(2) {
  position: absolute;
  top: 90%;
  left: 25%;
  font-size: 2vw;
  color: #ffc400;
  text-shadow: 0.25vw 0.25vw rgba(32, 32, 32, 0.8);
  z-index: 2;
}

.skills_content h2:nth-child(3) {
  position: absolute;
  top: 90%;
  left: 70%;
  font-size: 2vw;
  color: #ffc400;
  text-shadow: 0.25vw 0.25vw rgba(32, 32, 32, 0.8);
  z-index: 2;
}

.skills_soft {
  position: absolute;
  width: 40%;
  height: 30%;
  left: 9.5vw;
  top: 20vw;
  text-align: center;
}

.skills_soft h2 {
  position: absolute;
  font-size: 2.25vw;
  color: #0bf0ab57;
  text-shadow: 0.25vw 0.25vw rgba(32, 32, 32, 0.4);
  z-index: 2;
  font-weight: 200;
  top: -5vw;
}

.tagcloud {
  display: inline-block;
  top: 2vw;
  left: 25vw;
  font-weight: bold;
  letter-spacing: 0.2vw;
  font-size: 1.25vw;
  text-shadow: 0.25vw 0.25vw rgba(11, 240, 171, 0.145);
}

.tagclout--item {
  transition: all 0.3s;
}

.tagcloud--item:hover {
  color: #0bf0ab;
  transition: all 0.3s ease-in;
}

/* Work Experience CSS */
.experience_container {
  display: flex;
  position: relative;
  width: 100%;
  height: 100vw;
  background-color: #070707;
}

.experience_content {
  text-align: left;
  margin: auto;
  width: 100%;
  margin-top: 0vw;
  height: 100vw;
}

.experience_header {
  text-align: center;
}

.work_container {
  margin: auto;
  height: 30%;
}

.work_container h2 {
  position: relative;
  color: #fff;
  left: 15vw;
  top: 6vw;
  font-size: 3vw;
  text-shadow: 0.25vw 0.25vw rgba(0, 0, 0, 0.345);
  width: 40%;
}

#swe-text {
  font-size: 2vw;
}

#fiverr-text {
  font-size: 2vw;
}

.work_container h3 {
  position: relative;
  color: #fff;
  left: 16vw;
  top: 6vw;
  font-size: 1.25vw;
  text-shadow: 0.25vw 0.25vw rgba(0, 0, 0, 0.345);
  width: 40%;
  font-weight: 200;
}

.work_container ul {
  text-align: left;
}

.work_container li {
  position: relative;
  color: #fff;
  top: 5vw;
  font-size: 1.25vw;
  left: 18vw;
  line-height: 2vw;
  width: 32.5%;
}

.work_container p {
  width: 18%;
  position: relative;
  left: 40vw;
  top: 5vw;
  font-size: 1.25vw;
  color: #fff;
  font-weight: 700;
}

.experience_btn {
  font-size: 1vw;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  outline: none;
  box-shadow: 0.25vw 0.25vw rgb(0, 0, 0);
  top: 7vw;
  left: 16vw;
}

.experience_btn a {
  font-size: 1.3vw;
  padding: 0.3vw 3vw;
  display: block;
  position: relative;
  z-index: 2;
  color: #000;
  text-decoration: none;
  text-shadow: 0.1vw 0.1vw rgba(0, 0, 0, 0.345);
}

.experience_btn:hover {
  transform: scale(1.025);
  background: #ebac00;
  transition: all 0.3s ease-in;
}

.experience_btn:hover:after {
  width: 100%;
}

.experience_img_container {
  width: 10%;
  position: relative;
  text-align: right;
  bottom: 14vw;
  left: 10vw;
  z-index: 0;
  margin: auto;
}

#experience_img {
  width: 35vw;
  border-radius: 2vw;
  box-shadow: 0.4vw 0.4vw rgb(0, 0, 0);
}

/* Resume CSS */
.resume_container {
  display: flex;
  position: absolute;
  width: 100%;
  height: 235vw;
  background-color: #070707;
}

.resume_content {
  text-align: left;
  margin: auto;
  width: 100%;
  margin-top: 0vw;
  height: 125vw;
}

.resume_header {
  text-align: center;
}

.projects_container {
  margin: auto;
  height: 30%;
}

.projects_container h2 {
  position: relative;
  color: #fff;
  left: 15vw;
  top: 6vw;
  font-size: 3vw;
  text-shadow: 0.25vw 0.25vw rgba(0, 0, 0, 0.345);
  width: 40%;
}

.projects_container h3 {
  position: relative;
  color: #fff;
  left: 16vw;
  top: 6vw;
  font-size: 1.25vw;
  text-shadow: 0.25vw 0.25vw rgba(0, 0, 0, 0.345);
  width: 40%;
  font-weight: 200;
}

.projects_container ul {
  text-align: left;
}

.projects_container li {
  position: relative;
  color: #fff;
  top: 5vw;
  font-size: 1.25vw;
  left: 18vw;
  line-height: 2vw;
  width: 32.5%;
}

.projects_container p {
  width: 18%;
  position: relative;
  left: 40vw;
  top: 5vw;
  font-size: 1.25vw;
  color: #fff;
  font-weight: 700;
}

.resume_btn {
  font-size: 1vw;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  outline: none;
  box-shadow: 0.25vw 0.25vw rgb(0, 0, 0);
  top: 7vw;
  left: 16vw;
}

.resume_btn a {
  font-size: 1.3vw;
  padding: 0.3vw 3vw;
  display: block;
  position: relative;
  z-index: 2;
  color: #000;
  text-decoration: none;
  text-shadow: 0.1vw 0.1vw rgba(0, 0, 0, 0.345);
}

.resume_btn:hover {
  transform: scale(1.025);
  background: #ebac00;
  transition: all 0.3s ease-in;
}

.resume_btn:hover:after {
  width: 100%;
}

.resume_img_container {
  width: 10%;
  position: relative;
  text-align: right;
  bottom: 15vw;
  left: 10vw;
  z-index: 0;
  margin: auto;
}

#resume_img {
  width: 35vw;
  border-radius: 2vw;
  box-shadow: 0.4vw 0.4vw rgb(0, 0, 0);
}

/* Mobile Devices CSS */
@media only screen and (max-width: 960px) {
  /* Body CSS */
  body {
    overflow-x: hidden;
    width: 100%;
  }

  /* Headers CSS */
  .header_container {
    height: 15vw;
  }

  .header_content_top p {
    position: absolute;
    font-size: 4vw;
    top: 100%;
    left: 10%;
    color: #0bf0ab;
  }

  .header_content_bottom p {
    position: absolute;
    font-size: 4vw;
    top: 0%;
    left: 10%;
    color: #0bf0ab;
  }

  .header-picture {
    display: none;
  }

  .media-bar {
    display: none;
  }

  /* Hamburger Icon CSS */
  #hamburger_icon {
    display: block;
  }

  /* Navbar CSS */
  .navbar {
    display: none;
  }

  /* Main Container */
  .main_container {
    height: 100vw;
  }

  .main_content {
    text-align: center;
    margin: auto;
    width: 100%;
    height: 60%;
  }

  .main_content h1 {
    font-size: 10vw;
    left: 0;
    top: 15vw;
    width: 100%;
  }

  .main_content h2 {
    font-size: 6vw;
    width: 80%;
    left: 0;
    top: 20vw;
  }

  .main_content p {
    font-size: 5vw;
    width: 80%;
    left: 0;
    top: 22.5vw;
  }

  .main_btn {
    display: none;
    top: 30vw;
    left: 0vw;
  }

  .main_btn a {
    font-size: 5vw;
  }

  #main_img {
    display: none;
  }

  /* Mobile Section CSS */
  .mobile_icons {
    display: flex;
    position: absolute;
    width: 100%;
    height: 21%;
    text-align: center;
    justify-content: center;
  }

  .mobile_icons--top {
    position: relative;
    width: 12.5vw;
    text-decoration: none;
    color: rgb(155, 155, 155);
    transition: all 0.3s;
    top: 85vw;
    font-size: 6vw;
    animation: main_description 1.25s;
  }

  .mobile_icons--top:hover {
    color: #cecece;
    transition: all 0.3s ease-in;
  }

  /* Career Objective CSS */
  .objective_container {
    height: 140vw;
  }

  .objective_content {
    width: 100%;
    height: 50%;
  }

  .objective_content h1 {
    font-size: 7vw;
  }

  .objective_content h2 {
    position: relative;
    top: -10vw;
    width: 80%;
    height: 25vw;
    font-size: 5vw;
    line-height: 7vw;
  }

  /* Skills CSS */
  .skills_container {
    width: 100%;
    height: 150vw;
  }

  .skills_content h1:nth-child(1) {
    position: absolute;
    top: 10%;
    left: 25%;
    font-size: 7vw;
  }

  .skills_content h2:nth-child(2) {
    top: 35%;
    left: 0;
    font-size: 5vw;
    width: 100%;
  }

  .skills_content h2:nth-child(3) {
    top: 90%;
    left: 0;
    font-size: 5vw;
    width: 100%;
  }

  .skills_soft {
    position: absolute;
    width: 60%;
    height: 10%;
    top: 22.5%;
    left: 20%;
    text-align: center;
  }

  .skills_soft h2 {
    font-size: 4vw;
    line-height: 5vw;
  }

  .tagcloud {
    top: 70vw;
    left: 0;
    letter-spacing: 0.2vw;
    font-size: 2.5vw;
  }

  /* Work Experience CSS */
  .experience_container {
    height: 420vw;
  }

  .experience_content {
    margin-bottom: 425vw;
    height: 280vw;
  }

  .experience_content h1:first-child {
    position: relative;
    margin: auto;
    color: #fff;
    font-size: 7vw;
    width: 100%;
    top: 9vw;
    left: 25%;
    text-underline-offset: 0.5vw;
  }

  .work_container {
    margin: auto;
    height: 50%;
  }

  .work_container h2 {
    position: relative;
    color: #fff;
    left: 8vw;
    top: 14.5vw;
    font-size: 6vw;
    text-shadow: 0.25vw 0.25vw rgba(0, 0, 0, 0.345);
    width: 100%;
  }

  .work_container h3 {
    position: relative;
    color: #fff;
    left: 16vw;
    top: 18vw;
    font-size: 3.5vw;
    text-shadow: 0.25vw 0.25vw rgba(0, 0, 0, 0.345);
    font-weight: 200;
    width: 100%;
  }

  .work_container ul {
    text-align: left;
  }

  .work_container li {
    position: relative;
    color: #fff;
    top: 15vw;
    font-size: 3vw;
    left: 15vw;
    line-height: 4.5vw;
    width: 80%;
  }

  .work_container p {
    width: 37.5%;
    position: relative;
    left: 60vw;
    top: 12vw;
    font-size: 3vw;
    color: #fff;
    font-weight: 700;
  }

  .experience_btn {
    font-size: 1vw;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    outline: none;
    box-shadow: 0.25vw 0.25vw rgb(0, 0, 0);
    top: 20vw;
    left: 18vw;
  }

  .experience_btn a {
    font-size: 5vw;
    padding: 0.3vw 3vw;
    display: block;
    position: relative;
    z-index: 2;
    color: #000;
    text-decoration: none;
    text-shadow: 0.1vw 0.1vw rgba(0, 0, 0, 0.345);
  }

  .experience_btn:hover {
    transform: scale(1.025);
    background: #ebac00;
    transition: all 0.3s ease-in;
  }

  .experience_btn:hover:after {
    width: 100%;
  }

  .experience_img_container {
    width: 100%;
    position: relative;
    text-align: center;
    bottom: -30vw;
    left: 0;
    z-index: 0;
    margin: auto;
  }

  #experience_img {
    width: 80vw;
    border-radius: 2vw;
    box-shadow: 0.4vw 0.4vw rgb(0, 0, 0);
  }

  #swe-text {
    font-size: 5vw;
  }

  #ukg-title {
    font-size: 3vw;
  }

  #fiverr-text {
    font-size: 4.5vw;
  }

  /* Resume CSS */
  .resume_container {
    height: 850vw;
  }

  .resume_content {
    margin-bottom: 425vw;
    height: 280vw;
  }

  .resume_content h1:first-child {
    position: relative;
    margin: auto;
    color: #fff;
    font-size: 7vw;
    width: 100%;
    top: 9vw;
    left: 25%;
    text-underline-offset: 0.5vw;
  }

  .projects_container {
    margin: auto;
    height: 50%;
  }

  .projects_container h2 {
    position: relative;
    color: #fff;
    left: 8vw;
    top: 14.5vw;
    font-size: 6vw;
    text-shadow: 0.25vw 0.25vw rgba(0, 0, 0, 0.345);
    width: 100%;
  }

  .projects_container h3 {
    position: relative;
    color: #fff;
    left: 12vw;
    top: 18vw;
    font-size: 3.5vw;
    text-shadow: 0.25vw 0.25vw rgba(0, 0, 0, 0.345);
    width: 100%;
    font-weight: 200;
  }

  .projects_container ul {
    text-align: left;
  }

  .projects_container li {
    position: relative;
    color: #fff;
    top: 15vw;
    font-size: 3vw;
    left: 15vw;
    line-height: 4.5vw;
    width: 80%;
  }

  .projects_container p {
    width: 37.5%;
    position: relative;
    left: 60vw;
    top: 12vw;
    font-size: 3vw;
    color: #fff;
    font-weight: 700;
  }

  .resume_btn {
    font-size: 1vw;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    outline: none;
    box-shadow: 0.25vw 0.25vw rgb(0, 0, 0);
    top: 20vw;
    left: 18vw;
  }

  .resume_btn a {
    font-size: 5vw;
    padding: 0.3vw 3vw;
    display: block;
    position: relative;
    z-index: 2;
    color: #000;
    text-decoration: none;
    text-shadow: 0.1vw 0.1vw rgba(0, 0, 0, 0.345);
  }

  .resume_btn:hover {
    transform: scale(1.025);
    background: #ebac00;
    transition: all 0.3s ease-in;
  }

  .resume_btn:hover:after {
    width: 100%;
  }

  .resume_img_container {
    width: 100%;
    position: relative;
    text-align: center;
    bottom: -30vw;
    left: 0;
    z-index: 0;
    margin: auto;
  }

  #resume_img {
    width: 80vw;
    border-radius: 2vw;
    box-shadow: 0.4vw 0.4vw rgb(0, 0, 0);
  }
}
